I have a column that has fields such as C5, C6, C3, CC, CA, CD, etc.
I want to be able to find all the columns that have a letter and then a number such as C5 and C6.
I know if I do:
SELECT * FROM TABLE WHERE FIELD LIKE 'C%'
It will return CC,CA,CD as well, but I don't want that, I want to just return the ones numbers. I also want to update this column deleting the number, so C5 becomes C and C6 becomes C and so on.