如何测量查询运行时间

时间:2017-12-16 17:14:37

标签: toad

如何在toad中找到确切的sql查询运行时。

1 个答案:

答案 0 :(得分:0)

强制TOAD检索所有行。怎么样?例如,

select count(*) from (your current query goes here);

or

select distinct (your current column list goes here) from ...

or

create table test as (your current query goes here)