check.result

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

RESULT
25
字号
drop table if exists t1;create table t1(n int not null, key(n), key(n), key(n), key(n));check table t1 extended;insert into t1 values (200000);Table	Op	Msg_type	Msg_texttest.t1	check	status	OKdrop table t1;Create table t1(f1 int);Create table t2(f1 int);Create view v1 as Select * from t1;Check Table v1,t2;Table	Op	Msg_type	Msg_texttest.v1	check	status	OKtest.t2	check	status	OKdrop view v1;drop table t1, t2;CREATE TEMPORARY TABLE t1(a INT);CHECK TABLE t1;Table	Op	Msg_type	Msg_texttest.t1	check	status	OKREPAIR TABLE t1;Table	Op	Msg_type	Msg_texttest.t1	repair	status	OKDROP TABLE t1;

⌨️ 快捷键说明

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