I'm trying to include an "OR" clause in a CASE but I keep getting
"Error Code: 1241. Operand should contain 1 column(s)
Here's a sample of the query.
select [...],
CASE
when category1.Category1Name in (...) or category1.Category1Name like (...) then 'L-ACCESSORIES'
when[...]
end as 'Style'
from [...]
If someone could shed some like on this it'd be much appreciated.