I am working with some databases input with searching the data by alpha and numeric. I am using LIKE show the alpha and everything works well except for numeric input.
SELECT * FROM `product` WHERE `name` LIKE `[0-9]%`
Is there any mistake in the like wildcard I am using?
note: example for the data I am searching like "99 T-shirt model" so basically I just want to sort all name starting with a number and I do not care about the next letter.