I'm trying to create a SQL statement that checks a table to see if the record exists, if not, it adds the record. If it does exist, it changes the value of a field to TRUE.
If (SELECT COUNT(*) FROM 'my_preferences' JOIN users ON 'user_id' = 'mp_user_id' ) =1
UPDATE `mp_start_page`= TRUE where 'user_id' = 'mp_user_id'
Else
INSERT INTO `my_preferences` (`mp_user_id`, `mp_start_page`) VALUES ('user_id', 'TRUE')
I've also looked into trying to achieve this with the INSERT ... ON DUPLICATE KEY UPDATE function, but i can't seem to get that to work either.
Thanks for you help.
EDITED TO ADD: I'm comparing two separate tables (my_preferences & users). I need to check the my_preferences table to see if users.user_id exists in the mp_user_id field, if so, it updates mp_state_page to TRUE, if not, it adds a record making mp_user_id = user_id and mp_start_page to TRUE
INSERT INTO...SELECT, or a conditional UPDATE withINSERT...ON DUPLICATE KEY UPDATE, but there's no single query for your logic. – Dan Grossman Aug 10 '11 at 19:20user_idFROM users), 'TRUE') ON DUPLICATE KEY UPDATE mp_start_page = 'TRUE' Returns this error: #1242 - Subquery returns more than 1 row – EMUELLER Aug 11 '11 at 14:13