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

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. create table t1 (n int not null auto_increment primary key);
  8. insert into t1 values(NULL);
  9. insert into t1 values(2);
  10. select n from t1;
  11. n
  12. 1
  13. 2
  14. drop table t1;