4,SELECT within SELECT Tutorial 案例

此教程教我們在SELECT查詢中使用別一個SELECT查詢,進行一些更複雜的查詢。

1.列出每個國家的名字 name,當中人口 population 是高於俄羅斯’Russia’的人口。

 select name 
 from world 
 where population >(select population from world 
 where name = 'russia')

2.列出歐州每國家的人均GDP,當中人均GDP要高於英國’United Kingdom’的數值。

select name 
from world
where continent = 'Europe' and 
GDP/population > (select GDP/population from world 
where name = 'United Kingdom')

在这里插入图片描述

3,在阿根廷Argentina 及 澳大利亞 Australia所在的洲份中,列出當中的國家名字 name 及洲分 continent 。按國字名字順序排序

select name, continent from world 
where continent in(select continent from world 
where name in('Argentina','Australia'))
order by name

在这里插入图片描述

4,哪一個國家的人口比加拿大Canada的多,但比波蘭Poland的少?列出國家名字name和人口population 。

select name ,population 
from world 
where 
population > (select population from world where name = 'canada') 
and 
population <(select population from world where name = 'Poland')

5,Germany德國(人口8000萬),在Europe歐洲國家的人口最多。Austria奧地利(人口850萬)擁有德國總人口的11%。

顯示歐洲的國家名稱name和每個國家的人口population。以德國的人口的百分比作人口顯示。

select name,concat(round(population*100/(select population 
from world
where  name='Germany'),0),'%') 
from world
where continent='Europe'

在这里插入图片描述

  • 10
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值