I want to add a row to a database table, but if a row exists with the same unique key I want to update the row.
For example:
Try this out:
INSERT INTO table (id, name, age) VALUES (1, 'A', 19) ON DUPLICATE KEY UPDATE id = id + 1;
Hope this helps.