rpl000008.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. stop slave;
  2. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  3. reset master;
  4. reset slave;
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  6. start slave;
  7. use test;
  8. drop table if exists mysqltest_foo;
  9. drop table if exists mysqltest_bar;
  10. create table mysqltest_foo (n int);
  11. insert into mysqltest_foo values(4);
  12. use test;
  13. create table mysqltest_foo (n int);
  14. insert into mysqltest_foo values(5);
  15. create table mysqltest_bar (m int);
  16. insert into mysqltest_bar values(15);
  17. create table t1 (k int);
  18. insert into t1 values(55);
  19. select mysqltest_foo.n,mysqltest_bar.m,t1.k from mysqltest_foo,mysqltest_bar,t1;
  20. n m k
  21. 4 15 55
  22. drop table mysqltest_foo,mysqltest_bar,t1;
  23. drop table mysqltest_foo,mysqltest_bar,t1;