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 1 year has passed since last update.

SQLの実行計画確認方法(製品別)

Posted at

Oracle

実行計画を取得するためのSQL文を実行します。

EXPLAIN PLAN FOR [クエリ文];

取得した実行計画を表示します。

SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY);

MySQL、postgreSQL、Amazon Aurora、MariaDB

実行計画を取得し表示します。

EXPLAIN [クエリ文];

Microsoft SQL Server

SQLを実行しながら実行計画を表示する

SET STATISTICS XML ON;
[クエリ文];
SET STATISTICS XML OFF;
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?