I want to check whether a column starts with "%". Normally if I were to search for another character I would do this like code below but this doesn't work when searching for "%".
SELECT *
FROM `table`
WHERE `column` LIKE 'anothercharacter%'
Thanks.