Hi folks,
I'm trying to query values that match certain conditions using Mariadb.
Currently, I have a WHERE statement with:
What would be the correct way to use this statement
Any help would be much appreciated! :0
I'm trying to query values that match certain conditions using Mariadb.
Currently, I have a WHERE statement with:
WHERE value LIKE "value1" OR LIKE "value2"
; however, after running, I get an error stating there's an error with my syntax (I may be confusing MySQL syntax, which is probably why).What would be the correct way to use this statement
WHERE value LIKE "value1" OR LIKE "value2"
in Mariadb?Any help would be much appreciated! :0