Link to home
Start Free TrialLog in
Avatar of frdep
frdep

asked on

UpperCase in a Query


How can I have uppercase in a sql query ?
I'm using a Paradox file, and in a TQuery I have :
SELECT * FROM MyTable WHERE UPPERCASE(Name) = 'HELLO'

It do not work :((  How can I do that ??
Thanks
ASKER CERTIFIED SOLUTION
Avatar of vqmacedo
vqmacedo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kretzschmar
yup, for paradox should upper do it like

SELECT * FROM MyTable WHERE UPPER(Name) = 'HELLO'