首页 > 其他 > 详细

SHOW Syntax

时间:2018-04-18 23:19:55      阅读:209      评论:0      收藏:0      [点我收藏+]

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

原文:https://www.cnblogs.com/zhengwenqiang/p/8878100.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!