I would like to have an SQL query where I check if one ID (of an array with ID's) matches at least one ID out of an array of other ID's. The ID's are stings.
It should be like:
SELECT * FROM table1 WHERE table1.ids COINTAINS_AT_LEAST_ONE_ID_FROM ['ID_one','ID_two','ID_three']
table1.ids contains also an array with IDs. For example, let's say ['ID_two','ID_four']
I saw several solutions but I am using an old PostgreSQL Version (8.0.2 on Redshift) and nothing worked so far.
Do you know a solution? :)
Greetings
Here is an ugly solution (if you're desperate), it should work on 8.0 :
First create the t10 table that you'll use as an iterator (adjust it to your maximum array size):
Then here is the test table :
Then, the query, that use T10 to iterate over all members of your arrays :