Answered
List functions: Comparing lists... in SQL statements?
Hello
I got a table with a column containing comma-separated values, p.e.
row 1: 45,67,2,90,67
row 2: 34,7,23,9,7
row 3: 4
row 4: 567,8,90
now I would like to find the rows containing p.e. 4 and 90. the search input comes in a list 4,90
my results should be row 1, row 3 and row 4.
how do I write the WHERE clause in SQL?
thank you so much for hints...
I got a table with a column containing comma-separated values, p.e.
row 1: 45,67,2,90,67
row 2: 34,7,23,9,7
row 3: 4
row 4: 567,8,90
now I would like to find the rows containing p.e. 4 and 90. the search input comes in a list 4,90
my results should be row 1, row 3 and row 4.
how do I write the WHERE clause in SQL?
thank you so much for hints...
