skip to Main Content

'Insert if not exists' – Phpmyadmin

Is there any way I can insert into, if values not exists in any row? Let's say I have a table: id(auto_increment)|id_user|id_translation ------------------------------------------ 39 |5 | 20 - Tried INSERT IGNORE INTO `usertranslation`(`id_translation`, `id_user`) VALUES ('20','5') WHERE not EXISTS (…

VIEW QUESTION
Back To Top
Search