Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我的搜索,我使用了多个查询,我想测量 mySQL 执行所有查询需要多长时间。PHPMyAdmin 运行你给它的所有查询,但它只给出最后一个的结果和执行时间。有没有办法在不拿出我的计算器的情况下查看综合执行时间?:)
select @a := now(); ... select @b := now(); select timediff(@b, @a);