Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@blak-xvIZ0J • Mar 20, 2011
select city_name,min(population) pop
from
(
select city_name, population from table1
union
select city_name, population from table2
union
select city_name, population from table3
union
select city_name, population from table4
)
group by city_name
order by pop; -
@ishan-nohePN • Mar 20, 2011