phpMyAdmin - Query Execution Time

前端 未结 4 1059
谎友^
谎友^ 2021-01-22 23:58

When I execute a simple statement in phpMyAdmin like

SELECT *
FROM a

where \"a\" has 500\'000 rows, it gives me a time of a few milliseconds on

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-23 00:50

    The displayed execution time is how long the query took to run on the server - it's accurate and comes from the MySQL engine itself. Unfortunately, the results have to then be sent over the web to your browser to be displayed, which takes a lot longer.

提交回复
热议问题