rpl000005.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. SHOW VARIABLES LIKE 'relay_log_space_limit';
  8. Variable_name Value
  9. relay_log_space_limit 0
  10. CREATE TABLE t1 (name varchar(64), age smallint(3));
  11. INSERT INTO  t1 SET name='Andy', age=31;
  12. INSERT t1 SET name='Jacob', age=2;
  13. INSERT into t1 SET name='Caleb', age=1;
  14. ALTER TABLE t1 ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
  15. select * from t1;
  16. name age id
  17. Andy 31 00000001
  18. Jacob 2 00000002
  19. Caleb 1 00000003
  20. select * from t1;
  21. name age id
  22. Andy 31 00000001
  23. Jacob 2 00000002
  24. Caleb 1 00000003
  25. drop table t1;