Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 271 Bytes

query-execute-time.md

File metadata and controls

13 lines (9 loc) · 271 Bytes

Query Execute Time

To check a sql statement execute time, we can use profiling

set profiling = 1;
select * from user;
show profiling;
show profiling for query 1;

Reference