blob: 446138b8949abd5997504b9703e860604e0313f3 [file] [log] [blame]
select
nation.n_nationkey as n_nationkey,
customer.c_name as c_name,
count(nation.n_nationkey) as cnt
from
nation inner join customer on n_nationkey = c_nationkey
group by
nation.n_nationkey,
customer.c_name
order by
n_nationkey, c_name;