I am trying to remove all entries within the "Car Models" column that have a string of integers and text. For example, I would like to remove the entries "100", "CT100", "Charger 300" from my results, leaving entries with only letters.
SELECT DISTINCT Car_Models AS 'Car Models'
FROM Car_Customers
WHERE ISNUMERIC(Car_Models) = 0
ORDER BY Car_Models ASC
My result returned entries with just text or texts/integers. I do not want the text/integers, I only need a list of entries with text.