status.result

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 94 行

RESULT
94
字号
flush status;show status like 'Table_lock%';Variable_name	ValueTable_locks_immediate	0Table_locks_waited	0SET SQL_LOG_BIN=0;drop table if exists t1;create table t1(n int) engine=myisam;insert into t1 values(1);lock tables t1 read;unlock tables;lock tables t1 read;update t1 set n = 3;unlock tables;show status like 'Table_lock%';Variable_name	ValueTable_locks_immediate	3Table_locks_waited	1drop table t1;select 1;11show status like 'last_query_cost';Variable_name	ValueLast_query_cost	0.000000FLUSH STATUS;SHOW STATUS LIKE 'max_used_connections';Variable_name	ValueMax_used_connections	1SET @save_thread_cache_size=@@thread_cache_size;SET GLOBAL thread_cache_size=3;SHOW STATUS LIKE 'max_used_connections';Variable_name	ValueMax_used_connections	3FLUSH STATUS;SHOW STATUS LIKE 'max_used_connections';Variable_name	ValueMax_used_connections	2SHOW STATUS LIKE 'max_used_connections';Variable_name	ValueMax_used_connections	3SHOW STATUS LIKE 'max_used_connections';Variable_name	ValueMax_used_connections	4SET GLOBAL thread_cache_size=@save_thread_cache_size;CREATE TABLE t1 ( a INT );INSERT INTO t1 VALUES (1), (2);SELECT a FROM t1 LIMIT 1;a1SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	2.402418EXPLAIN SELECT a FROM t1;id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra1	SIMPLE	t1	ALL	NULL	NULL	NULL	NULL	2	SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	2.402418SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a;a12SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	0.000000EXPLAIN SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a;id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra1	PRIMARY	t1	ALL	NULL	NULL	NULL	NULL	2	2	UNION	t1	ALL	NULL	NULL	NULL	NULL	2	NULL	UNION RESULT	<union1,2>	ALL	NULL	NULL	NULL	NULL	NULL	Using filesortSHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	0.000000SELECT a IN (SELECT a FROM t1) FROM t1 LIMIT 1;a IN (SELECT a FROM t1)1SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	0.000000SELECT (SELECT a FROM t1 LIMIT 1) x FROM t1 LIMIT 1;x1SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	0.000000SELECT * FROM t1 a, t1 b LIMIT 1;a	a1	1SHOW SESSION STATUS LIKE 'Last_query_cost';Variable_name	ValueLast_query_cost	4.805836DROP TABLE t1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?