Answers for "mysql replace into duplicates rows"

SQL
3

mysql remove duplicates

DELETE FROM table_name WHERE id 
       NOT IN ( SELECT id FROM table_name 
                   GROUP BY field_1, field_2)
Posted by: Guest on June-18-2020
2

mysql on duplicate key update

INSERT INTO t1 (a,b,c) VALUES (1,2,3)
  ON DUPLICATE KEY UPDATE c=3;
INSERT INTO t1 (a,b,c) VALUES (4,5,6)
  ON DUPLICATE KEY UPDATE c=9;
Posted by: Guest on October-28-2020

Code answers related to "mysql replace into duplicates rows"

Code answers related to "SQL"

Browse Popular Code Answers by Language