4 lines
124 B
SQL
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;
|