How would I take text that is a \n delimited string and output every row that contains a certain substring?
For example: DB:
product | keywords
-------------------
test | test\ntest1\ntest2\ntest3
test1 | test\nblah\nblah
test2 | tst\nblah\nblah
test3 | testr\nblah\nblah
SELECT * FROM products WHERE
How would I write the WHERE clause to pull product test and test1?