S
S
SET12020-06-29 08:40:36
MySQL
SET1, 2020-06-29 08:40:36

Can't write to MySQL database?

I have a table that has the following columns: receiver_id , author_id , article_id and liked. There is no id column.
The following unique index is worth: receiver_id, author_id, article_id, liked.

When I make a request like this:

INSERT INTO likes (receiver_id, author_id, article_id, liked) VALUES (412, 13, 23, 1)


then the request passes. But when I do the same, only change the article_id, the request fails:
INSERT INTO likes (receiver_id, author_id, article_id, liked) VALUES (412, 13, 24, 1)


Why? When changing the article_id, the index is unique in any case

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
SET1, 2020-06-29
@SET1

Found an error. Didn't notice that `receiver_id` is PRIMARY KEY, so error 1062 is thrown.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question