[ACCEPTED]-SQL ignore case in group by? (oracle)-group-by
Accepted answer
Just use UPPER:
select upper(state), count(1)
from your_table
group by upper(state);
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.