1:サブクエリとは?
ある問い合わせの結果に基づいて、異なる問い合わせを行う仕組み
例:2017年12月に商品を購入していないユーザーにメルマガを送りたいので該当ユーザー一覧を出したい!
補足:必要な情報はユーザーid、名字、email、ER図を参考に
select id,last_name,email from users where id not in( select user_id from orders where order_time >= '2017-012-01 00:00:00' and order_time < '2018-01-01 00:00:00');