I have a field pattern (is string).
examples:
id | pattern
1 | car;cat;dog -> words car cat do
2 | apple;nocar;carno -> words apple nocar carno
So, now, I would like to select all items where pattern contains full word 'car'.
Expected result is:
id | pattern
1 | car;cat;dog
because there is car - it should skip words like nocar and carno
Thank you for any help.