0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

(SQL文)集計/結合/絞り込み/グループ化の実行順

Posted at

SQLデータ抽出で、書く順番と実行順を整理する

SQLデータ抽出課題で、SQL文を見ても状況が追えなくなってしまったので、
書く順番と実行順をまとめたところ、理解することができました。

SQLは取得するテーブルを形成してから検索が実行される!

書く順番
SELECT カラム, 集計関数(集計)
FROM テーブル名
JOIN (結合)
WHERE 条件(検索・絞り込み)
GROUP BY カラム, カラム(グループ化)

実行順 
FROM テーブル名
JOIN(結合)
WHERE 条件(検索・絞り込み)
GROUP BY カラム, カラム(グループ化)
SELECT カラム, 集計関数(集計) ※上にあるカラム以外を取るとエラー

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?