Oh another one, say I wanted to find everything that started with a numeric?
Don't know about searching for non-alphanumberic characters.So that'll pull any number so if it's "3.1 update" it'll work?
Is there any way of doing it so that it pulls anything that's not a letter of the alphabet instead? Just in case we gets brackets etc?
You could try LIKE '[0-9]%' - not sure whether MySQL supports regular expressions?
Cheers fella, ended up using
PHP:REGEXP '^[[:digit:]]'