I have a table movies and nationality field, but it written diferently even if is the same information
example:
Británica Estadounidense
estadounidense Británica
Británica y estadounidense
My query is that I have to get all the movies that are británica and estadounidense
My code:
SELECT query_name, nationality
FROM directors
WHERE nationality LIKE '%ritánica%' || '%' || '%st%'
I don't know how to get when the 2 words are switched estadounidense Británica