odbc.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test some ODBC compatibility
  3. #
  4. select {fn length("hello")}, { date "1997-10-20" };
  5. #
  6. # Test retreiving row with last insert_id value.
  7. #
  8. create table t1 (a int not null auto_increment,b int not null,primary key (a,b));
  9. insert into t1 SET A=NULL,B=1;
  10. insert into t1 SET a=null,b=2;
  11. select * from t1 where a is null and b=2;
  12. select * from t1 where a is null;
  13. explain select * from t1 where b is null;
  14. drop table t1;