Is it possible to run a query using ILIKE with the IN function? For example:
SELECT store_names
FROM stores
WHERE states ILIKE IN (SELECT location
FROM locations
WHERE stateID = 1)
I want to run the results returned from the nested query through the ILIKE function. Is there a way to do this?