CS1103/Labs/Lab5/Q3.sql

4 lines
152 B
MySQL
Raw Normal View History

2022-10-07 00:48:09 -03:00
select CUST_STATE as `State`, count(CUST_BALANCE) as `Number of non zero balances`
from LGCUSTOMER
where CUST_BALANCE != 0
group by CUST_STATE;