SELECT * FROM `table` WHERE `column`='System'
and this select 'SYSTEM' too. I want to select only and accurately `column`='System'
without 'SYSTEM'.
I'm try this:
SELECT * FROM `table` WHERE `column` REGEXP [[:<:]]'System'[[:>:]]
but again I have 'SYSTEM' too.