I would like to query for items similar to
SELECT crayon FROM box WHERE color IN ('red', 'blue', 'green')
However, I instead I would like to query for LIKE... ORing them as above.
SELECT crayon FROM box WHERE color LIKE IN ('r*', 'b*', 'g*')
Is the statement above right?
SELECT crayon FROM box WHERE color IN ('red', 'blue', 'green')
However, I instead I would like to query for LIKE... ORing them as above.
SELECT crayon FROM box WHERE color LIKE IN ('r*', 'b*', 'g*')
Is the statement above right?