I have a column that looks like this ATX, mATX (Micro ATX), mITX (Mini ITX), eATX (Extended ATX)
I need to select it because it contains the first ATX but if it would look like this for example mATX (Micro ATX), mITX (Mini ITX), eATX (Extended ATX)
then I don't want to select this row.
This is my SQL but it's reading also the words mATX, Micro ATX, eATX etc.
SELECT * FROM case_list WHERE dostupnost=1 AND format_dosky LIKE '%ATX%' LIMIT 32
How can I modify it so I can get it to work?