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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Init section
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. #
  8. # Simple IF tests
  9. #
  10. select IF(0,"ERROR","this"),IF(1,"is","ERROR"),IF(NULL,"ERROR","a"),IF(1,2,3)|0,IF(1,2.0,3.0)+0 ;
  11. #
  12. # Test of IF and case-sensitiveness
  13. #
  14. CREATE TABLE t1 (st varchar(255) NOT NULL, u int(11) NOT NULL) ENGINE=MyISAM;
  15. INSERT INTO t1 VALUES ('a',1),('A',1),('aa',1),('AA',1),('a',1),('aaa',0),('BBB',0);
  16. select if(1,st,st) s from t1 order by s;
  17. select if(u=1,st,st) s from t1 order by s;
  18. select if(u=1,binary st,st) s from t1 order by s;
  19. select if(u=1,st,binary st) s from t1 where st like "%a%" order by s;
  20. explain extended select if(u=1,st,binary st) s from t1 where st like "%a%" order by s;
  21. #
  22. # NULLIF test
  23. #
  24. select nullif(u=0, 'test') from t1;
  25. explain extended select nullif(u=0, 'test') from t1;
  26. drop table t1;
  27. #
  28. # Bug 2629
  29. #
  30. select NULLIF(NULL,NULL), NULLIF(NULL,1), NULLIF(NULL,1.0), NULLIF(NULL,"test");
  31. select NULLIF(1,NULL), NULLIF(1.0, NULL), NULLIF("test", NULL);
  32. #
  33. # Problem with IF()
  34. #
  35. create table t1 (num  double(12,2));
  36. insert into t1 values (144.54);
  37. select sum(if(num is null,0.00,num)) from t1;
  38. drop table t1;
  39. create table t1 (x int, y int);
  40. insert into t1 values (0,6),(10,16),(20,26),(30,10),(40,46),(50,56);
  41. select min(if(y -x > 5,y,NULL)), max(if(y - x > 5,y,NULL)) from t1;
  42. drop table t1;
  43. #
  44. # BUG#3987
  45. #
  46. create table t1 (a int);
  47. insert t1 values (1),(2);
  48. select if(1>2,a,avg(a)) from t1;
  49. drop table t1;
  50. #
  51. # Bug #5595  NULLIF() IS NULL returns false if NULLIF() returns NULL
  52. #
  53. SELECT NULLIF(5,5) IS NULL, NULLIF(5,5) IS NOT NULL;
  54. #
  55. # Test for bug #11142: evaluation of NULLIF when the first argument is NULL
  56. #
  57. CREATE TABLE t1 (a CHAR(10));
  58. INSERT INTO t1 VALUES ('aaa'), (NULL), (''), ('bbb');
  59. SELECT a, NULLIF(a,'') FROM t1;
  60. SELECT a, NULLIF(a,'') FROM t1 WHERE NULLIF(a,'') IS NULL;
  61. DROP TABLE t1;
  62. # End of 4.1 tests