Hello!
Does anyone know if it is possible to have multiple conditions inside a single query?
Condition 1 is : UPDATE table SET mydata = "hello" WHERE condition LIKE 'yes'
Condition 2 is : UPDATE table SET mydata = "goodbye" WHERE condition LIKE 'no'
Having both in the same query is possible? Or do I have to connect to the database
as many times as there are conditions?
Thanks a lot for the help.