Thread
:
Excel, OLEDB and uppercase problem.
View Single Post
#
3
Posted to microsoft.public.excel.programming
AA2e72E
external usenet poster
Posts: 400
Excel, OLEDB and uppercase problem.
"witek" wrote:
select * from [DB$] where UPPER(Field) = "UPPERCASE" does not work.
Try:
SELECT * FROM[DB$] WHERE UCASE(Field) = 'UPPERCASE';
Use single quotes from strings and UCASE instead of UPPER.
Reply With Quote
AA2e72E
View Public Profile
Find all posts by AA2e72E