One simple question, i couldn’t find answers in WEB becouse it’s rather unusuall , but:
How can i build SQL WHERE something IN (...) command which returns me every record just like SQL something LIKE '%' ?
One simple question, i couldn’t find answers in WEB becouse it’s rather unusuall ,
Share
You can use
WHERE something IN (something)This will return every record where
something is not null(same behaviour assomething LIKE '%')