Is it possible to insert multiple rows in single query but in the same time check if record exist and update existing record?
I have to avoid REPLACE INTO because my table have primary and unique keys.
Is it possible to insert multiple rows in single query but in the same time check if record exist and update existing record?
I have to avoid REPLACE INTO because my table have primary and unique keys.
Copyright © 2021 Jogjafile Inc.
I'm not sure where to put ON DUPLICATE KEY in my query?
This is solution:
Thanks to all!