I have a table letter_count
looking like this:
count letters
2 ["a","b"]
4 ["b","c"]
2 ["a"]
0 ["b"]
6 ["c"]
7 ["d"]
I'd like to be able to query only the rows containing a specific letters.
I have tried:
SELECT * FROM letter_counter WHERE letters IN ('["a"]')
But it fails.
What's the right syntax for this here?