154、MySQL 입문(4):하위 검색
연습 문제 링크:http://sqlzoo.net/wiki/SELECT_within_SELECT_Tutorial
다음은 SELECT in SELECT 연습 문제 내용 입 니 다.
--#1
/*
List each country name where the population is larger than that of 'Russia'.
world(name, continent, area, population, gdp)
*/
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'.
Per Capita GDP
The per capita GDP is the gdp/population
*/
SELECT name FROM world
WHERE gdp/population >
(SELECT gdp/population FROM world
WHERE name='United Kingdom') AND continent = 'Europe';
--#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');
지식 점:1)ROUND()함수 ROUND 함 수 는 수치 필드 를 지정 한 소수 자리 로 반올림 하 는 데 사 용 됩 니 다.SQL ROUND()문법 SELECT ROUND(columnname,decimals) FROM table_name 2)CONCAT()함수 CONCAT()함 수 는 여러 문자열 을 하나의 문자열 로 연결 하 는 데 사 용 됩 니 다 CONCAT()문법:CONCAT(str1,str 2,...)결 과 를 연결 매개 변수 로 만 든 문자열 로 되 돌려 줍 니 다.NULL 인 자 는 NULL 로 되 돌아 갑 니 다.
--#5
/*
Germany (population 80 million) has the largest population of the countries in Europe. Austria (population 8.5 million) has 11% of the population of Germany.
Show the name and the population of each country in Europe. Show the population as a percentage of the population of Germany.
Decimal places
You can use the function ROUND to remove the decimal places.
Percent symbol %
*/
SELECT name,CONCAT(ROUND((population/(SELECT population FROM world WHERE name = 'Germany')*100),0),'%')
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 > (
SELECT MAX(gdp)
FROM world
WHERE continent = 'Europe');
지식 점:다음 예 에서 관련 하위 조회 방법 을 사용 합 니 다.관련 하위 조 회 는 끼 워 넣 기 순환 처럼 작 동 합 니 다.하위 조 회 는 외부 조회 에서 단일 기록 과 관련 된 줄 에 만 접근 할 수 있 습 니 다.WHERE 자구 의 x y 는 두 표 의 줄 을 인용 하 는 방법 이다.'관련 값 이 같은 곳'이다.
--#7
/*
Find the largest country (by area) in each continent, show the continent, the name and the area:
*/
SELECT continent, name, area FROM world x
WHERE area >= ALL
(SELECT area FROM world y
WHERE y.continent=x.continent
AND area>0);
지식 점:LIMIT 1:앞의 한 줄 의 데 이 터 를 조회 하고 아래 의 예 에서 각 주의 국가 가 알파벳 으로 순 서 를 정 한 후에 맨 앞의 첫 번 째 데이터 만 조회 하 는 것 을 나타 낸다.
--#8
/*
List each continent and the name of the country that comes first alphabetically.
*/
SELECT continent,name FROM world x
where name = (select name from world y where x.continent = y.continent order by name LIMIT 1);
--#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 x
WHERE 25000000 > ALL(SELECT population FROM world y WHERE x.continent = y.continent AND y.population > 0);
--#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 x
WHERE population > ALL(SELECT population*3 FROM world y WHERE x.continent = y.continent AND y.population > 0 AND x.name != y.name);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.