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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. select {fn length("hello")}, { date "1997-10-20" };
  3. {fn length("hello")} 1997-10-20
  4. 5 1997-10-20
  5. create table t1 (a int not null auto_increment,b int not null,primary key (a,b));
  6. insert into t1 SET A=NULL,B=1;
  7. insert into t1 SET a=null,b=2;
  8. select * from t1 where a is null and b=2;
  9. a b
  10. 2 2
  11. select * from t1 where a is null;
  12. a b
  13. explain select * from t1 where b is null;
  14. id select_type table type possible_keys key key_len ref rows Extra
  15. 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
  16. drop table t1;