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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test year
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. create table t1 (y year,y2 year(2));
  8. insert into t1 values (0,0),(1999,1999),(2000,2000),(2001,2001),(70,70),(69,69);
  9. select * from t1;
  10. select * from t1 order by y;
  11. select * from t1 order by y2;
  12. drop table t1;
  13. #
  14. # Bug 2335
  15. #
  16. create table t1 (y year);
  17. insert into t1 values (now());
  18. select if(y = now(), 1, 0) from t1;
  19. drop table t1;
  20. # End of 4.1 tests