I am having a problem with my sql command.
So I have a column of type SET let's call it test_set, and I have multiple values that a row can have, let's say test1, test2
And let's say I have one row that has test1,
and another that has test1 and test2,
How could I select all rows that have test1, (should return both rows)
What about all rows that have test2 (Should return the second row)
As of right now, I know you can do SELECT * WHERE test_set='test1'
But this only returns rows that only have test1, not the ones that have test1 and test2.
Thanks!