rpl000008.result

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

RESULT
24
字号
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;use test;drop table if exists mysqltest_foo;drop table if exists mysqltest_bar;create table mysqltest_foo (n int);insert into mysqltest_foo values(4);use test;create table mysqltest_foo (n int);insert into mysqltest_foo values(5);create table mysqltest_bar (m int);insert into mysqltest_bar values(15);create table t1 (k int);insert into t1 values(55);select mysqltest_foo.n,mysqltest_bar.m,t1.k from mysqltest_foo,mysqltest_bar,t1;n	m	k4	15	55drop table mysqltest_foo,mysqltest_bar,t1;drop table mysqltest_foo,mysqltest_bar,t1;

⌨️ 快捷键说明

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