📄 rpl_drop_db.result
字号:
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;drop database if exists mysqltest1;create database mysqltest1;create table mysqltest1.t1 (n int);insert into mysqltest1.t1 values (1);select * from mysqltest1.t1 into outfile 'mysqltest1/f1.txt';create table mysqltest1.t2 (n int);create table mysqltest1.t3 (n int);drop database mysqltest1;ERROR HY000: Error dropping database (can't rmdir './mysqltest1/', errno: 17)use mysqltest1;show tables;Tables_in_mysqltest1drop database mysqltest1;ERROR HY000: Error dropping database (can't rmdir './mysqltest1/', errno: 17)use mysqltest1;show tables;Tables_in_mysqltest1use test;create table t1 (n int);insert into t1 values (1234);use mysqltest1;show tables;Tables_in_mysqltest1use test;select * from t1;n1234drop table t1;stop slave;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -