status.result

来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· RESULT 代码 · 共 26 行

RESULT
26
字号
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.000000

⌨️ 快捷键说明

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