PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

come usare \timing in postgres

Puoi usare \timing solo con il client della riga di comando psql , poiché questo è un psql comando.

È un interruttore che attiva e disattiva i rapporti sui tempi di esecuzione:

test=> \timing
Timing is on.
test=> SELECT 42;
┌──────────┐
│ ?column? │
├──────────┤
│       42 │
└──────────┘
(1 row)

Time: 0.745 ms
test=> \timing
Timing is off.