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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. create table t1 (a char(10), tmsp timestamp);
  3. insert into t1 set a = 1;
  4. insert delayed into t1 set a = 2;
  5. insert into t1 set a = 3, tmsp=NULL;
  6. insert delayed into t1 set a = 4;
  7. insert delayed into t1 set a = 5, tmsp = 19711006010203;
  8. insert delayed into t1 (a, tmsp) values (6, 19711006010203);
  9. insert delayed into t1 (a, tmsp) values (7, NULL);
  10. insert into t1 set a = 8,tmsp=19711006010203;
  11. select * from t1 where tmsp=0;
  12. a tmsp
  13. select * from t1 where tmsp=19711006010203;
  14. a tmsp
  15. 5 1971-10-06 01:02:03
  16. 6 1971-10-06 01:02:03
  17. 8 1971-10-06 01:02:03
  18. drop table t1;
  19. create table t1 (a int not null auto_increment primary key, b char(10));
  20. insert delayed into t1 values (1,"b");
  21. insert delayed into t1 values (null,"c");
  22. insert delayed into t1 values (3,"d"),(null,"e");
  23. insert delayed into t1 values (3,"this will give an","error");
  24. ERROR 21S01: Column count doesn't match value count at row 1
  25. select * from t1;
  26. a b
  27. 1 b
  28. 2 c
  29. 3 d
  30. 4 e
  31. drop table t1;