rpl000012.result
来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· RESULT 代码 · 共 38 行
RESULT
38 行
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;create table t2 (n int);create temporary table t1 (n int);insert into t1 values(1),(2),(3);insert into t2 select * from t1;create temporary table t3 (n int not null);alter table t3 add primary key(n);flush logs;insert into t3 values (100);insert into t2 select * from t3;drop table if exists t3;insert into t2 values (101);create temporary table t1 (n int);insert into t1 values (4),(5);insert into t2 select * from t1;insert into t2 values(6);select * from t2;n123100101456show status like 'Slave_open_temp_tables';Variable_name ValueSlave_open_temp_tables 0drop table if exists t1,t2;Warnings:Note 1051 Unknown table 't1'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?