Answer the question
In order to leave comments, you need to log in
How to check SQL lite intersection?
There are such lines: 'eng, anime' and 'eng, history' their intersection returns True. How do I make a query in SQL lite with an intersection check? 'eng, anime' and 'rus, history' must return False
Answer the question
In order to leave comments, you need to log in
SELECT * FROM memes WHERE tags LIKE "%anime%" OR tags LIKE "%eng%"
Damn, I don't understand what the intersection is. Do strings start with one substring? Then select this substring and use like
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question