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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Testing of NULL in a lot of different places
  3. #
  4. select null,N,isnull(null),isnull(1/0),isnull(1/0 = null),ifnull(null,1),ifnull(null,"TRUE"),ifnull("TRUE","ERROR"),1/0 is null,1 is not null;
  5. select 1 | NULL,1 & NULL,1+NULL,1-NULL;
  6. select NULL=NULL,NULL<>NULL,IFNULL(NULL,1.1)+0,IFNULL(NULL,1) | 0;
  7. select strcmp("a",NULL),(1<NULL)+0.0,NULL regexp "a",null like "a%","a%" like null;
  8. select concat("a",NULL),replace(NULL,"a","b"),replace("string","i",NULL),replace("string",NULL,"i"),insert("abc",1,1,NULL),left(NULL,1);
  9. select repeat("a",0),repeat("ab",5+5),repeat("ab",-1),reverse(NULL);
  10. select field(NULL,"a","b","c");
  11. select 2 between null and 1,2 between 3 AND NULL,NULL between 1 and 2,2 between NULL and 3, 2 between 1 AND null;
  12. SELECT NULL AND NULL, 1 AND NULL, NULL AND 1, NULL OR NULL, 0 OR NULL, NULL OR 0;
  13. SELECT (NULL OR NULL) IS NULL;
  14. select NULL AND 0, 0 and NULL;
  15. select inet_ntoa(null),inet_aton(null),inet_aton("122.256"),inet_aton("122.226."),inet_aton("");
  16. drop table if exists t1;
  17. create table t1 (x int);
  18. insert into t1 values (null);
  19. select * from t1 where x != 0;
  20. drop table t1;