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?

初めに

Qiita Engineer Festa 2024に参加中。完走目指してます。
他のメタコマンドについては以下から読んでください。

\timingとは

パラメータがある場合、各SQL文にかかる時間の表示の有無をonまたはoffに設定します。 パラメータがない場合、表示をonとoffの間で切り替えます。 表示はミリセカンド単位です。 1秒より長い時間は 分:秒 の形式で表示され、必要なら時間と日のフィールドが追加されます。

\timingについて

試してみた

postgres=# select count(*) from employees;
 count 
-------
     4
(1 )

postgres=# \timing on
タイミングは on です。
postgres=# select count(*) from employees;
 count 
-------
     4
(1 )

時間: 0.857 ミリ秒
postgres=# \timing off
タイミングは off です。
postgres=# select count(*) from employees;
 count 
-------
     4
(1 )

postgres=# 

まとめ

これは手動で叩いたSQLの実行時間を確認するのに使っている。

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?