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

MySQL数据库

开发平台:

Visual C++

  1. # Initialise
  2. --disable_warnings
  3. drop table if exists t1;
  4. --enable_warnings
  5. #
  6. # test of IN (NULL)
  7. #
  8. select 1 in (1,2,3);
  9. select 10 in (1,2,3);
  10. select NULL in (1,2,3);
  11. select 1 in (1,NULL,3);
  12. select 3 in (1,NULL,3);
  13. select 10 in (1,NULL,3);
  14. select 1.5 in (1.5,2.5,3.5);
  15. select 10.5 in (1.5,2.5,3.5);
  16. select NULL in (1.5,2.5,3.5);
  17. select 1.5 in (1.5,NULL,3.5);
  18. select 3.5 in (1.5,NULL,3.5);
  19. select 10.5 in (1.5,NULL,3.5);
  20. CREATE TABLE t1 (a int, b int, c int);
  21. insert into t1 values (1,2,3), (1,NULL,3);
  22. select 1 in (a,b,c) from t1;
  23. select 3 in (a,b,c) from t1;
  24. select 10 in (a,b,c) from t1;
  25. select NULL in (a,b,c) from t1;
  26. drop table t1;
  27. CREATE TABLE t1 (a float, b float, c float);
  28. insert into t1 values (1.5,2.5,3.5), (1.5,NULL,3.5);
  29. select 1.5 in (a,b,c) from t1;
  30. select 3.5 in (a,b,c) from t1;
  31. select 10.5 in (a,b,c) from t1;
  32. drop table t1;
  33. CREATE TABLE t1 (a varchar(10), b varchar(10), c varchar(10));
  34. insert into t1 values ('A','BC','EFD'), ('A',NULL,'EFD');
  35. select 'A' in (a,b,c) from t1;
  36. select 'EFD' in (a,b,c) from t1;
  37. select 'XSFGGHF' in (a,b,c) from t1;
  38. drop table t1;
  39. CREATE TABLE t1 (field char(1));
  40. INSERT INTO t1 VALUES ('A'),(NULL);
  41. SELECT * from t1 WHERE field IN (NULL);
  42. SELECT * from t1 WHERE field NOT IN (NULL);
  43. SELECT * from t1 where field = field;
  44. SELECT * from t1 where field <=> field;
  45. DELETE FROM t1 WHERE field NOT IN (NULL);
  46. SELECT * FROM t1;
  47. drop table t1;
  48. create table t1 (id int(10) primary key);
  49. insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9);
  50. select * from t1 where id in (2,5,9);
  51. drop table t1;
  52. create table t1 (
  53. a char(1) character set latin1 collate latin1_general_ci,
  54. b char(1) character set latin1 collate latin1_swedish_ci,
  55. c char(1) character set latin1 collate latin1_danish_ci
  56. );
  57. insert into t1 values ('A','B','C');
  58. insert into t1 values ('a','c','c');
  59. --error 1267
  60. select * from t1 where a in (b);
  61. --error 1270
  62. select * from t1 where a in (b,c);
  63. --error 1271
  64. select * from t1 where 'a' in (a,b,c);
  65. select * from t1 where 'a' in (a);
  66. select * from t1 where a in ('a');
  67. select * from t1 where 'a' collate latin1_general_ci in (a,b,c);
  68. select * from t1 where 'a' collate latin1_bin in (a,b,c);
  69. select * from t1 where 'a' in (a,b,c collate latin1_bin);
  70. explain extended select * from t1 where 'a' in (a,b,c collate latin1_bin);
  71. drop table t1;
  72. set names utf8;
  73. create table t1 (a char(10) character set utf8 not null);
  74. insert into t1 values ('bbbb'),(_koi8r'妹妹'),(_latin1'哪哪');
  75. select a from t1 where a in ('bbbb',_koi8r'妹妹',_latin1'哪哪') order by a;
  76. drop table t1;
  77. # Bug#7834 Illegal mix of collations in IN operator
  78. create table t1 (a char(10) character set latin1 not null);
  79. insert into t1 values ('a'),('b'),('c');
  80. select a from t1 where a IN ('a','b','c') order by a;
  81. drop table t1;
  82. set names latin1;
  83. select '1.0' in (1,2);
  84. select 1 in ('1.0',2);
  85. select 1 in (1,'2.0');
  86. select 1 in ('1.0',2.0);
  87. select 1 in (1.0,'2.0');
  88. select 1 in ('1.1',2);
  89. select 1 in ('1.1',2.0);
  90. # Test case for bug #6365
  91. create table t1 (a char(20) character set binary);
  92. insert into t1 values ('aa'), ('bb');
  93. select * from t1 where a in (NULL, 'aa');
  94. drop table t1;
  95. # BUG#13419
  96. create table t1 (id int, key(id));
  97. insert into t1 values (1),(2),(3);
  98. select count(*) from t1 where id not in (1);
  99. select count(*) from t1 where id not in (1,2);
  100. drop table t1;
  101. # End of 4.1 tests