CS1103/Labs/Lab5/Q2.sql
2022-10-07 00:48:09 -03:00

4 lines
124 B
SQL

select BRAND_TYPE as `Brand Type` ,count(BRAND_TYPE) as `Number of each brand types`
from LGBRAND
group by BRAND_TYPE;