SHOW Syntax
Posted ChaseForFuture
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHOW Syntax相关的知识,希望对你有一定的参考价值。
mysql 5.5 Reference Manual /
SHOW PROFILE Syntax
-- https://dev.mysql.com/doc/refman/5.5/en/show-profile.html
-- Malformed statements are profiled.
select @@profiling;
select count(1) from statisticsdata.activityEvent;
show profiles;
show profile all for query 86;
select state, format(duration, 6) as duration from INFORMATION_SCHEMA.PROFILING where QUERY_ID = 86 order by SEQ;
desc information_schema.profiling;
以上是关于SHOW Syntax的主要内容,如果未能解决你的问题,请参考以下文章