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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. 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 ;
  3. IF(0,"ERROR","this") IF(1,"is","ERROR") IF(NULL,"ERROR","a") IF(1,2,3)|0 IF(1,2.0,3.0)+0
  4. this is a 2 2.0
  5. CREATE TABLE t1 (st varchar(255) NOT NULL, u int(11) NOT NULL) ENGINE=MyISAM;
  6. INSERT INTO t1 VALUES ('a',1),('A',1),('aa',1),('AA',1),('a',1),('aaa',0),('BBB',0);
  7. select if(1,st,st) s from t1 order by s;
  8. s
  9. a
  10. A
  11. a
  12. aa
  13. AA
  14. aaa
  15. BBB
  16. select if(u=1,st,st) s from t1 order by s;
  17. s
  18. a
  19. A
  20. a
  21. aa
  22. AA
  23. aaa
  24. BBB
  25. select if(u=1,binary st,st) s from t1 order by s;
  26. s
  27. A
  28. AA
  29. BBB
  30. a
  31. a
  32. aa
  33. aaa
  34. select if(u=1,st,binary st) s from t1 where st like "%a%" order by s;
  35. s
  36. A
  37. AA
  38. a
  39. a
  40. aa
  41. aaa
  42. explain extended select if(u=1,st,binary st) s from t1 where st like "%a%" order by s;
  43. id select_type table type possible_keys key key_len ref rows Extra
  44. 1 SIMPLE t1 ALL NULL NULL NULL NULL 7 Using where; Using filesort
  45. Warnings:
  46. Note 1003 select if((test.t1.u = 1),test.t1.st,cast(test.t1.st as char charset binary)) AS `s` from test.t1 where (test.t1.st like _latin1'%a%') order by if((test.t1.u = 1),test.t1.st,cast(test.t1.st as char charset binary))
  47. select nullif(u=0, 'test') from t1;
  48. nullif(u=0, 'test')
  49. NULL
  50. NULL
  51. NULL
  52. NULL
  53. NULL
  54. 1
  55. 1
  56. explain extended select nullif(u=0, 'test') from t1;
  57. id select_type table type possible_keys key key_len ref rows Extra
  58. 1 SIMPLE t1 ALL NULL NULL NULL NULL 7
  59. Warnings:
  60. Note 1003 select nullif((test.t1.u = 0),_latin1'test') AS `nullif(u=0, 'test')` from test.t1
  61. drop table t1;
  62. select NULLIF(NULL,NULL), NULLIF(NULL,1), NULLIF(NULL,1.0), NULLIF(NULL,"test");
  63. NULLIF(NULL,NULL) NULLIF(NULL,1) NULLIF(NULL,1.0) NULLIF(NULL,"test")
  64. NULL NULL NULL NULL
  65. select NULLIF(1,NULL), NULLIF(1.0, NULL), NULLIF("test", NULL);
  66. NULLIF(1,NULL) NULLIF(1.0, NULL) NULLIF("test", NULL)
  67. 1 1.0 test
  68. create table t1 (num  double(12,2));
  69. insert into t1 values (144.54);
  70. select sum(if(num is null,0.00,num)) from t1;
  71. sum(if(num is null,0.00,num))
  72. 144.54
  73. drop table t1;
  74. create table t1 (x int, y int);
  75. insert into t1 values (0,6),(10,16),(20,26),(30,10),(40,46),(50,56);
  76. select min(if(y -x > 5,y,NULL)), max(if(y - x > 5,y,NULL)) from t1;
  77. min(if(y -x > 5,y,NULL)) max(if(y - x > 5,y,NULL))
  78. 6 56
  79. drop table t1;
  80. create table t1 (a int);
  81. insert t1 values (1),(2);
  82. select if(1>2,a,avg(a)) from t1;
  83. if(1>2,a,avg(a))
  84. 1.5000
  85. drop table t1;
  86. SELECT NULLIF(5,5) IS NULL, NULLIF(5,5) IS NOT NULL;
  87. NULLIF(5,5) IS NULL NULLIF(5,5) IS NOT NULL
  88. 1 0
  89. CREATE TABLE t1 (a CHAR(10));
  90. INSERT INTO t1 VALUES ('aaa'), (NULL), (''), ('bbb');
  91. SELECT a, NULLIF(a,'') FROM t1;
  92. a NULLIF(a,'')
  93. aaa aaa
  94. NULL NULL
  95. NULL
  96. bbb bbb
  97. SELECT a, NULLIF(a,'') FROM t1 WHERE NULLIF(a,'') IS NULL;
  98. a NULLIF(a,'')
  99. NULL NULL
  100. NULL
  101. DROP TABLE t1;