前提
departmentテーブルとemployeeテーブルを用意しています。
この2つのテーブルからサブクエリを使い所属している人数が最大の部署と部署名をselect文で表示したいです。
データベースはMySQLを使用しています。
mysql> select * from crmexercise.department; +----+-------------+ | id | name | +----+-------------+ | 1 | sales | | 2 | management | | 3 | engineering | +----+-------------+ 3 rows in set (0.00 sec)
mysql> select * from crmexercise.employee; +----+---------------+-------------+------------+-----+-----------------------+---------------------+ | id | department_id | family_name | first_name | sex | mail_address | mobile_phone_number | +----+---------------+-------------+------------+-----+-----------------------+---------------------+ | 1 | 1 | suzuki | ken | 1 | exercise@example.com | 000-0000-0000 | | 2 | NULL | yamada | tarou | 1 | exercise2@example.com | 000-0000-0000 | | 3 | NULL | satou | hajime | 1 | exercise3@example.com | 000-0000-0000 | | 4 | 1 | test1 | test1 | 1 | exercise4@example.com | 000-0000-0000 | | 5 | 2 | test2 | test2 | 1 | exercise5@example.com | 000-0000-0000 | +----+---------------+-------------+------------+-----+-----------------------+---------------------+
できていること
select sub.部署名, sub.所属人数 from (select d.name as 部署名, count(*) as 所属人数 from employee as e join department as d on e.department_id = d.id group by d.id) as sub where sub.所属人数 = (select max(人数) from ( select count(*) as 人数 from employee as e join department as d on e.department_id = d.id group by d.id) as sub2 );
result
1部署名 所属人数 2sales 2
error
1ERROR 1248 (42000) at line 184: Every derived table must have its own alias
このSQL文で期待している結果は表示できるのですがwhere句のエイリアス名を記述しないとエラーになります。
where内のサブクエリでエイリアス名を記述する理由が調べてもよくわからず、、
初歩的な質問かもしれませんがご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/09 06:08