SQL query:
INSERT INTO `website_categorization`.`category_keyword` (
`ID` ,
`ID_Category` ,
`Keyword` ,
`Score`)
VALUES (
NULL , \'18\', \'free mail\', \
You already have a row in your database with the values '18' and 'free mail'. You can't have two such rows because of the unique constraint. You have some choices:
DELETE FROM yourtable WHERE ID_Category = '18' AND Keyword = 'free mail'
.INSERT IGNORE
to ignore the error.REPLACE
instead of INSERT
to replace the old row with the new row.INSERT
knowing that the client-side will be alerted of the error.