How can I make this query work. The lower(name_cat) appears to be cauing the problem. I tried moving it to distinct lower(name_cat) but that gave the same error.
select
distinct name_cat
from
category
where
user_id = '73'
order by
lower(name_cat) asc
How can I make this query output the correct information which is a case-insensitive sort order.
eg...
Barry
Ben
bill
Bob
not
bill
Barry
Ben
Bob
Start Free Trial