【SQL入門】SELECT句の練習問題|SQL Bolt⑤ Review日本語訳と解答

Review問題日本語訳と解答

本記事では、海外のSQL学習サイト【SQL Bolt】を利用して、データベース初心者向けにSQLの基本を解説します。

第5回は「SQL Review: Simple SELECT Queries」、Lesson4とLesson6の間にある練習問題の日本語訳・解答です。

今回は新しく学ぶ内容はありません。Lesson1~4の復習にお役立てください◎

目次

SQL Review:問題の日本語訳・解答

1. List all the Canadian cities and their populations

【和訳】カナダの都市とその人口をすべて挙げてください。

SELECT * FROM north_american_cities WHERE Country = "Canada";
2. Order all the cities in the United States by their latitude from north to south

【和訳】アメリカのすべての都市を、北から南へ緯度順に並べてください。

SELECT * FROM north_american_cities
WHERE Country = "United States"
ORDER BY Latitude DESC;
3. List all the cities west of Chicago, ordered from west to east

【和訳】シカゴより西にあるすべての都市を、西から東へ順番に挙げてください。

SELECT * FROM north_american_cities
WHERE Longitude < -87.629798
ORDER BY Longitude ASC;
4. List the two largest cities in Mexico (by population)

【和訳】メキシコの2大都市を挙げてください(人口比)。

SELECT * FROM north_american_cities
WHERE Country = "Mexico"
ORDER BY Population DESC
LIMIT 2;
5. List the third and fourth largest cities (by population) in the United States and their population

【和訳】アメリカで3番目と4番目の都市(人口比)とその人口を挙げてください。

SELECT * FROM north_american_cities
WHERE Country = "United States"
ORDER BY Population DESC
LIMIT 2 OFFSET 2;
Review問題日本語訳と解答

この記事が気に入ったら
フォローしてね!

よかったらシェアしてね
  • URLをコピーしました!
  • URLをコピーしました!

コメント

コメントする

CAPTCHA


目次