rpl000004.result

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

RESULT
29
字号
stop slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;reset master;reset slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;start slave;set SQL_LOG_BIN=0;create table t1 (word char(20) not null, index(word));load data infile '../std_data_ln/words.dat' into table t1;create table t2 (word char(20) not null);load data infile '../std_data_ln/words.dat' into table t2;create table t3 (word char(20) not null primary key);load table t1 from master;load table t2 from master;load table t3 from master;check table t1;Table	Op	Msg_type	Msg_texttest.t1	check	status	OKselect count(*) from t2;count(*)70select count(*) from t3;count(*)0set SQL_LOG_BIN=1;drop table if exists t1,t2,t3;create table t1(n int);drop table t1;

⌨️ 快捷键说明

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