How to ignore error when insert duplicate rows in MySql table with SQL

1 Answer

0 votes
-- Add IGNORE SQL INSERT INTO Statement

INSERT IGNORE INTO your_table (user_id, user_name) 
VALUES (71263, "Andrea"); 

 



answered Oct 17, 2019 by avibootz
...