日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

oraclf 复杂查询练习_SQL复杂查询—练习(四)

發布時間:2024/9/15 数据库 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 oraclf 复杂查询练习_SQL复杂查询—练习(四) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

練習 sqlzoo

表world概貌

#1.List each country name where the population is larger than that of 'Russia'. select name from world where population > (select population from world where name = 'Russia');

#2.Show the countries in Europe with a per capita GDP greater than 'United Kingdom'. select name from world where continent = 'Europe' and gdp/population > (select gdp/population from world where name = 'United Kingdom');

#3.List the name and continent of countries in the continents containing either Argentina or Australia. Order by name of the country. select name,continent from world where continent in (select continent from world where name in ('Argentina','Australia')) order by name;

# 4.解法一:Which country has a population that is more than Canada but less than Poland? Show the name and the population. select name,population from world where population > (select population from world where name = 'Canada') and population < (select population from world where name = 'Poland');# 4.解法二:Which country has a population that is more than Canada but less than Poland? Show the name and the population. select name,population from world where population between (select population from world where name = 'Canada')+1 and (select population from world where name = 'Poland')-1;

#5.Show the name and the population of each country in Europe. Show the population as a percentage of the population of Germany. select name,concat(round((population/(select population from world where name = 'Germany'))*100,0),'%') as percentage from world where continent = 'Europe';

#6.Which countries have a GDP greater than every country in Europe? [Give the name only.] (Some countries may have NULL gdp values) select name from world where gdp > all(select gdp from world where continent = 'Europe' and gdp > 0);

#7.Find the largest country (by area) in each continent, show the continent, the name and the area: select continent,name,area from world as s1 where area = (select max(area) from world as s2 where s1.continent=s2.continent group by continent);

#8.List each continent and the name of the country that comes first alphabetically. select continent,name from world as s1 where name <= all(select name from world as s2 where s1.continent=s2.continent group by continent);

# 9.Find the continents where all countries have a population <= 25000000. Then find the names of the countries associated with these continents. Show name, continent and population.解法一: select name,continent,population from world as s1 where continent in (select continent from world as s2 where s1.continent=s2.continent group by continent having max(population) <= 25000000);解法二: select name,continent,population from world as s1 where 25000000 >= all(select population from world as s2 where s1.continent=s2.continent group by continent);

#10.Some countries have populations more than three times that of any of their neighbours (in the same continent). Give the countries and continents. select name,continent from world as s1 where population/3 > all(select population from world as s2 where s1.continent=s2.continent and s1.name<>s2.name);

與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的oraclf 复杂查询练习_SQL复杂查询—练习(四)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。