blob: b61ad3812cefcb26ab779715dcef3a5060002b7b [file] [log] [blame]
select
n1.n_nationkey,
n1.n_name,
n2.n_name
from nation n1 join nation n2 on n1.n_name = upper(n2.n_name)
order by n1.n_nationkey;