nvwildfire
Technical User
Has anyone had problems using the UPPER operator in a WHERE clause in a SQL statement in access? I keep getting an error that say "Undefined function 'UPPER' in expression". Here is my query (note I've tried it via ADO and in access query builder):
SELECT tblClassDescription.ClassTitle,
tblClassdescription.ClassDescID
FROM tblClassDescription
WHERE (UPPER(tblClassDescription.ClassTitle) = 'KARLS GIS CLASS')
I may not need to worry about it if the comparison in the WHERE clause is case insensitive?
Any help would be greatly appreciated.
kgk
SELECT tblClassDescription.ClassTitle,
tblClassdescription.ClassDescID
FROM tblClassDescription
WHERE (UPPER(tblClassDescription.ClassTitle) = 'KARLS GIS CLASS')
I may not need to worry about it if the comparison in the WHERE clause is case insensitive?
Any help would be greatly appreciated.
kgk