これまで基本的なSQLやSQL JOINについて書きましたが、よく使われる複雑なクエリについて記載してなかったなと思ったのでこちらでまとめておきます。 クエリ結果から重複した値を除去したい場合にDISTINCTを使用します。 例えば、以下の従業員テーブルに ...
(user_id, follower_id) is the primary key for this table. This table contains the IDs of a user and a follower in a social media app where the follower follows the user. Write an SQL query that will, ...