This content has been marked as final.
Show 3 replies
-
1. Re: Query of Query - filtering
Dan Bracuk Feb 13, 2013 11:19 AM (in response to WolfShade)Are you sure that will work in Oracle? Looks like an incomplete subquery to me.
In any event, "upper" is supported by QofQ. I know you can do this:
select count(*)
from myQuery
where upper(myField) = 'FRED'
I've never tried trim before so I don't know if it's supported.
-
2. Re: Query of Query - filtering
WolfShade Feb 13, 2013 11:27 AM (in response to Dan Bracuk)Hi, Dan.
I'll give the UPPER() a shot. TRIM(), I'll play around with and report back.
Much appreciated.
^_^
-
3. Re: Query of Query - filtering
WolfShade Feb 13, 2013 12:52 PM (in response to WolfShade)UPPER() worked like a charm. As far as TRIM() - it's just TRIM(columnName), nothing else.
Thanks, Dan!
^_^


