I stumbled across a strange expression, which doesn't make sense to me at all.
SELECT * FROM `table` WHERE FIND_IN_SET('string', `column`);
Why not:
SELECT * FROM `table` WHERE `column`='string';
I thought FIND_IN_SET is used to find strings in comma-separated string lists. Are there cases where I can benefit from a "FIND_IN_SET"-column expression instead of a simple WHERE?