I would like to ask how to filter a table by column with array value, I have a column "categories" that can have a value like [1,2,3] now I want to filter the table with that table like SELECT * FROM TABLE WHERE CATEGORIES = 2,
I also tried LIKE but it seems like it is not the proper way to do it, any opinions and suggestions would be appreciated.
categoriescolumn value is "1,2,3" or "[1,2,3]"?