mysql duration and fetch time

后端 未结 4 1016
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-31 01:17

I am using MySQL workbench - What is the difference between duration and fetch times when a query is run?

Also is there a way I can enable the microsecond option in MySQ

4条回答
  •  Happy的楠姐
    2021-01-31 01:44

    Duration shows the time needed to execute the query and fetch is the time needed to read the result set (retrieve the data)

    I am unsure about the microsecond option. If this is in regards to optimization, remember - "premature optimization is the root of all evil"

提交回复
热议问题