mysql add column if not exists export code example
Example: mysql insert if not exists
INSERT IGNORE INTO companies
(id, full_name, address, phone_number)
VALUES
(1, 'Apple', '1 Infinite Loop, Cupertino, California', 18002752273);
INSERT IGNORE INTO companies
(id, full_name, address, phone_number)
VALUES
(1, 'Apple', '1 Infinite Loop, Cupertino, California', 18002752273);