計算機科学のブログ

ほしい物リスト

SQL - SQLite - サブクエリ - クエリの中にあるクエリ - LIMIT

Head First SQL ―頭とからだで覚えるSQLの基本Lynn Beighley(著)、 佐藤 直生(監訳)、 松永 多苗子(翻訳)、 オライリージャパンの 9章(サブクエリ - クエリの中にあるクエリ)、p.396(頭の体操)の解答を求めてみる。

sample3.sql

select mc.first_name, mc.last_name
from my_contacts mc
natural join job_current jc
order by jc.salary desc
limit 1;