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

MySQL数据库

开发平台:

Visual C++

  1. # Initialise
  2. --disable_warnings
  3. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t11,t12;
  4. --enable_warnings
  5. select (select 2);
  6. explain extended select (select 2);
  7. SELECT (SELECT 1) UNION SELECT (SELECT 2);
  8. explain extended SELECT (SELECT 1) UNION SELECT (SELECT 2);
  9. SELECT (SELECT (SELECT 0 UNION SELECT 0));
  10. explain extended SELECT (SELECT (SELECT 0 UNION SELECT 0));
  11. -- error 1247
  12. SELECT (SELECT 1 FROM (SELECT 1) as b HAVING a=1) as a;
  13. -- error 1247
  14. SELECT (SELECT 1 FROM (SELECT 1) as b HAVING b=1) as a,(SELECT 1 FROM (SELECT 1) as c HAVING a=1) as b;
  15. SELECT (SELECT 1),MAX(1) FROM (SELECT 1) as a;
  16. -- error 1247
  17. SELECT (SELECT a) as a;
  18. EXPLAIN EXTENDED SELECT 1 FROM (SELECT 1 as a) as b  HAVING (SELECT a)=1;
  19. SELECT 1 FROM (SELECT 1 as a) as b HAVING (SELECT a)=1;
  20. -- error 1054
  21. SELECT (SELECT 1), a;
  22. SELECT 1 as a FROM (SELECT 1) as b HAVING (SELECT a)=1;
  23. -- error 1054
  24. SELECT 1 FROM (SELECT (SELECT a) b) c;
  25. SELECT * FROM (SELECT 1 as id) b WHERE id IN (SELECT * FROM (SELECT 1 as id) c ORDER BY id);
  26. -- error 1241
  27. SELECT * FROM (SELECT 1) a  WHERE 1 IN (SELECT 1,1);
  28. SELECT 1 IN (SELECT 1);
  29. SELECT 1 FROM (SELECT 1 as a) b WHERE 1 IN (SELECT (SELECT a));
  30. -- error 1221
  31. select (SELECT 1 FROM (SELECT 1) a PROCEDURE ANALYSE(1));
  32. -- error 1108
  33. SELECT 1 FROM (SELECT 1) a PROCEDURE ANALYSE((SELECT 1));
  34. SELECT (SELECT 1) as a FROM (SELECT 1) b WHERE (SELECT a) IS NULL;
  35. SELECT (SELECT 1) as a FROM (SELECT 1) b WHERE (SELECT a) IS NOT NULL;
  36. SELECT (SELECT 1,2,3) = ROW(1,2,3);
  37. SELECT (SELECT 1,2,3) = ROW(1,2,1);
  38. SELECT (SELECT 1,2,3) < ROW(1,2,1);
  39. SELECT (SELECT 1,2,3) > ROW(1,2,1);
  40. SELECT (SELECT 1,2,3) = ROW(1,2,NULL);
  41. SELECT ROW(1,2,3) = (SELECT 1,2,3);
  42. SELECT ROW(1,2,3) = (SELECT 1,2,1);
  43. SELECT ROW(1,2,3) < (SELECT 1,2,1);
  44. SELECT ROW(1,2,3) > (SELECT 1,2,1);
  45. SELECT ROW(1,2,3) = (SELECT 1,2,NULL);
  46. SELECT (SELECT 1.5,2,'a') = ROW(1.5,2,'a');
  47. SELECT (SELECT 1.5,2,'a') = ROW(1.5,2,'b');
  48. SELECT (SELECT 1.5,2,'a') = ROW('b',2,'b');
  49. SELECT (SELECT 'b',2,'a') = ROW(1.5,2,'a');
  50. SELECT (SELECT 1.5,2,'a') = ROW(1.5,'c','a');
  51. SELECT (SELECT 1.5,'c','a') = ROW(1.5,2,'a');
  52. -- error 1241
  53. SELECT (SELECT * FROM (SELECT 'test' a,'test' b) a);
  54. SELECT 1 as a,(SELECT a+a) b,(SELECT b);
  55. create table t1 (a int);
  56. create table t2 (a int, b int);
  57. create table t3 (a int);
  58. create table t4 (a int not null, b int not null);
  59. insert into t1 values (2);
  60. insert into t2 values (1,7),(2,7);
  61. insert into t4 values (4,8),(3,8),(5,9);
  62. -- error 1247
  63. select (select a from t1 where t1.a = a1) as a2, (select b from t2 where t2.b=a2) as a1;
  64. select (select a from t1 where t1.a=t2.a), a from t2;
  65. select (select a from t1 where t1.a=t2.b), a from t2;
  66. select (select a from t1), a, (select 1 union select 2 limit 1) from t2;
  67. select (select a from t3), a from t2;
  68. select * from t2 where t2.a=(select a from t1);
  69. insert into t3 values (6),(7),(3);
  70. select * from t2 where t2.b=(select a from t3 order by 1 desc limit 1);
  71. (select * from t2 where t2.b=(select a from t3 order by 1 desc limit 1)) union (select * from t4 order by a limit 2) limit 3;
  72. (select * from t2 where t2.b=(select a from t3 order by 1 desc limit 1)) union (select * from t4 where t4.b=(select max(t2.a)*4 from t2) order by a);
  73. explain extended (select * from t2 where t2.b=(select a from t3 order by 1 desc limit 1)) union (select * from t4 where t4.b=(select max(t2.a)*4 from t2) order by a);
  74. select (select a from t3 where a<t2.a*4 order by 1 desc limit 1), a from t2;
  75. select (select t3.a from t3 where a<8 order by 1 desc limit 1), a from 
  76. (select * from t2 where a>1) as tt;
  77. explain extended select (select t3.a from t3 where a<8 order by 1 desc limit 1), a from 
  78. (select * from t2 where a>1) as tt;
  79. select * from t1 where t1.a=(select t2.a from t2 where t2.b=(select max(a) from t3) order by 1 desc limit 1);
  80. select * from t1 where t1.a=(select t2.a from t2 where t2.b=(select max(a) from t3 where t3.a > t1.a) order by 1 desc limit 1);
  81. select * from t1 where t1.a=(select t2.a from t2 where t2.b=(select max(a) from t3 where t3.a < t1.a) order by 1 desc limit 1);
  82. select b,(select avg(t2.a+(select min(t3.a) from t3 where t3.a >= t4.a)) from t2) from t4;
  83. explain extended select b,(select avg(t2.a+(select min(t3.a) from t3 where t3.a >= t4.a)) from t2) from t4;
  84. select * from t3 where exists (select * from t2 where t2.b=t3.a);
  85. select * from t3 where not exists (select * from t2 where t2.b=t3.a);
  86. select * from t3 where a in (select b from t2);
  87. select * from t3 where a not in (select b from t2);
  88. select * from t3 where a = some (select b from t2);
  89. select * from t3 where a <> any (select b from t2);
  90. # Rewrite: select * from t3 where not exists (select b from t2 where a <> b);
  91. select * from t3 where a = all (select b from t2);
  92. select * from t3 where a <> all (select b from t2);
  93. insert into t2 values (100, 5);
  94. select * from t3 where a < any (select b from t2);
  95. select * from t3 where a < all (select b from t2);
  96. select * from t3 where a >= any (select b from t2);
  97. explain extended select * from t3 where a >= any (select b from t2);
  98. select * from t3 where a >= all (select b from t2);
  99. delete from t2 where a=100;
  100. -- error 1241
  101. select * from t3 where a in (select a,b from t2);
  102. -- error 1241
  103. select * from t3 where a in (select * from t2);
  104. insert into t4 values (12,7),(1,7),(10,9),(9,6),(7,6),(3,9),(1,10);
  105. -- empty set
  106. select b,max(a) as ma from t4 group by b having b < (select max(t2.a) from t2 where t2.b=t4.b);
  107. insert into t2 values (2,10);
  108. select b,max(a) as ma from t4 group by b having ma < (select max(t2.a) from t2 where t2.b=t4.b);
  109. delete from t2 where a=2 and b=10;
  110. select b,max(a) as ma from t4 group by b having b >= (select max(t2.a) from t2 where t2.b=t4.b);
  111. create table t5 (a int);
  112. select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
  113. insert into t5 values (5);
  114. select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
  115. insert into t5 values (2);
  116. select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
  117. explain extended select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
  118. -- error 1242
  119. select (select a from t1 where t1.a=t2.a union all select a from t5 where t5.a=t2.a), a from t2;
  120. create table t6 (patient_uq int, clinic_uq int, index i1 (clinic_uq));
  121. create table t7( uq int primary key, name char(25));
  122. insert into t7 values(1,"Oblastnaia bolnitsa"),(2,"Bolnitsa Krasnogo Kresta");
  123. insert into t6 values (1,1),(1,2),(2,2),(1,3);
  124. select * from t6 where exists (select * from t7 where uq = clinic_uq);
  125. explain extended select * from t6 where exists (select * from t7 where uq = clinic_uq);
  126. # not unique fields
  127. -- error 1052
  128. select * from t1 where a= (select a from t2,t4 where t2.b=t4.b);
  129. # different tipes & group functions
  130. drop table t1,t2,t3;
  131. CREATE TABLE t3 (a varchar(20),b char(1) NOT NULL default '0');
  132. INSERT INTO t3 VALUES ('W','a'),('A','c'),('J','b');
  133. CREATE TABLE t2 (a varchar(20),b int NOT NULL default '0');
  134. INSERT INTO t2 VALUES ('W','1'),('A','3'),('J','2');
  135. CREATE TABLE t1 (a varchar(20),b date NOT NULL default '0000-00-00');
  136. INSERT INTO t1 VALUES ('W','1732-02-22'),('A','1735-10-30'),('J','1743-04-13');
  137. SELECT * FROM t1 WHERE b = (SELECT MIN(b) FROM t1);
  138. SELECT * FROM t2 WHERE b = (SELECT MIN(b) FROM t2);
  139. SELECT * FROM t3 WHERE b = (SELECT MIN(b) FROM t3);
  140. CREATE TABLE `t8` (
  141.   `pseudo` varchar(35) character set latin1 NOT NULL default '',
  142.   `email` varchar(60) character set latin1 NOT NULL default '',
  143.   PRIMARY KEY  (`pseudo`),
  144.   UNIQUE KEY `email` (`email`)
  145. ) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
  146. INSERT INTO t8 (pseudo,email) VALUES ('joce','test');
  147. INSERT INTO t8 (pseudo,email) VALUES ('joce1','test1');
  148. INSERT INTO t8 (pseudo,email) VALUES ('2joce1','2test1');
  149. EXPLAIN EXTENDED SELECT pseudo,(SELECT email FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo='joce')) FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo='joce');
  150. -- error 1241
  151. SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo,email FROM
  152. t8 WHERE pseudo='joce');
  153. -- error 1241
  154. SELECT pseudo FROM t8 WHERE pseudo=(SELECT * FROM t8 WHERE
  155. pseudo='joce');
  156. SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo='joce');
  157. -- error 1242
  158. SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo LIKE '%joce%');
  159. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8;
  160. #searchconthardwarefr3 forumconthardwarefr7
  161. CREATE TABLE `t1` (
  162.   `topic` mediumint(8) unsigned NOT NULL default '0',
  163.   `date` date NOT NULL default '0000-00-00',
  164.   `pseudo` varchar(35) character set latin1 NOT NULL default '',
  165.   PRIMARY KEY  (`pseudo`,`date`,`topic`),
  166.   KEY `topic` (`topic`)
  167. ) ENGINE=MyISAM ROW_FORMAT=DYNAMIC;
  168. INSERT INTO t1 (topic,date,pseudo) VALUES
  169. ('43506','2002-10-02','joce'),('40143','2002-08-03','joce');
  170. EXPLAIN EXTENDED SELECT DISTINCT date FROM t1 WHERE date='2002-08-03';
  171. EXPLAIN EXTENDED SELECT (SELECT DISTINCT date FROM t1 WHERE date='2002-08-03');
  172. SELECT DISTINCT date FROM t1 WHERE date='2002-08-03';
  173. SELECT (SELECT DISTINCT date FROM t1 WHERE date='2002-08-03');
  174. SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION SELECT 1) UNION ALL SELECT 1;
  175. -- error 1242
  176. SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION ALL SELECT 1) UNION SELECT 1;
  177. EXPLAIN EXTENDED SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION SELECT 1);
  178. drop table t1;
  179. #forumconthardwarefr7 searchconthardwarefr7
  180. CREATE TABLE `t1` (
  181.   `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  182.   `maxnumrep` int(10) unsigned NOT NULL default '0',
  183.   PRIMARY KEY  (`numeropost`),
  184.   UNIQUE KEY `maxnumrep` (`maxnumrep`)
  185. ) ENGINE=MyISAM ROW_FORMAT=FIXED;
  186. INSERT INTO t1 (numeropost,maxnumrep) VALUES (40143,1),(43506,2);
  187. CREATE TABLE `t2` (
  188.       `mot` varchar(30) NOT NULL default '',
  189.       `topic` mediumint(8) unsigned NOT NULL default '0',
  190.       `date` date NOT NULL default '0000-00-00',
  191.       `pseudo` varchar(35) NOT NULL default '',
  192.        PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`)
  193.     ) ENGINE=MyISAM ROW_FORMAT=DYNAMIC;
  194. INSERT INTO t2 (mot,topic,date,pseudo) VALUES ('joce','40143','2002-10-22','joce'), ('joce','43506','2002-10-22','joce');
  195. select numeropost as a FROM t1 GROUP BY (SELECT 1 FROM t1 HAVING a=1);
  196. SELECT numeropost,maxnumrep FROM t1 WHERE exists (SELECT 1 FROM t2 WHERE (mot='joce') AND date >= '2002-10-21' AND t1.numeropost = t2.topic) ORDER BY maxnumrep DESC LIMIT 0, 20;
  197. -- error 1054
  198. SELECT (SELECT 1) as a FROM (SELECT 1 FROM t1 HAVING a=1) b;
  199. -- error 1054
  200. SELECT 1 IN (SELECT 1 FROM t2 HAVING a);
  201. SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic);
  202. SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
  203. SELECT * from t2 where topic IN (SELECT SUM(topic) FROM t1);
  204. SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic);
  205. SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
  206. SELECT * from t2 where topic = any (SELECT SUM(topic) FROM t1);
  207. SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic);
  208. SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
  209. SELECT *, topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100) from t2;
  210. SELECT * from t2 where topic = all (SELECT SUM(topic) FROM t2);
  211. SELECT * from t2 where topic <> any (SELECT SUM(topic) FROM t2);
  212. SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
  213. SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
  214. SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
  215. SELECT *, topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000) from t2;
  216. drop table t1,t2;
  217. #forumconthardwarefr7
  218. CREATE TABLE `t1` (
  219.   `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  220.   `maxnumrep` int(10) unsigned NOT NULL default '0',
  221.   PRIMARY KEY  (`numeropost`),
  222.   UNIQUE KEY `maxnumrep` (`maxnumrep`)
  223. ) ENGINE=MyISAM ROW_FORMAT=FIXED;
  224. INSERT INTO t1 (numeropost,maxnumrep) VALUES (1,0),(2,1);
  225. -- error 1242
  226. select numeropost as a FROM t1 GROUP BY (SELECT 1 FROM t1 HAVING a=1);
  227. -- error 1242
  228. select numeropost as a FROM t1 ORDER BY (SELECT 1 FROM t1 HAVING a=1);
  229. drop table t1;
  230. create table t1 (a int);
  231. insert into t1 values (1),(2),(3);
  232. (select * from t1) union (select * from t1) order by (select a from t1 limit 1);
  233. drop table t1;
  234. #iftest
  235. CREATE TABLE t1 (field char(1) NOT NULL DEFAULT 'b');
  236. INSERT INTO t1 VALUES ();
  237. -- error 1242
  238. SELECT field FROM t1 WHERE 1=(SELECT 1 UNION ALL SELECT 1 FROM (SELECT 1) a HAVING field='b');
  239. drop table t1;
  240. # threadhardwarefr7
  241. CREATE TABLE `t1` (
  242.   `numeropost` mediumint(8) unsigned NOT NULL default '0',
  243.   `numreponse` int(10) unsigned NOT NULL auto_increment,
  244.   `pseudo` varchar(35) NOT NULL default '',
  245.   PRIMARY KEY  (`numeropost`,`numreponse`),
  246.   UNIQUE KEY `numreponse` (`numreponse`),
  247.   KEY `pseudo` (`pseudo`,`numeropost`)
  248. ) ENGINE=MyISAM;
  249. -- error 1247
  250. SELECT (SELECT numeropost FROM t1 HAVING numreponse=a),numreponse FROM (SELECT * FROM t1) as a;
  251. -- error 1054
  252. SELECT numreponse, (SELECT numeropost FROM t1 HAVING numreponse=a) FROM (SELECT * FROM t1) as a;
  253. SELECT numreponse, (SELECT numeropost FROM t1 HAVING numreponse=1) FROM (SELECT * FROM t1) as a;
  254. INSERT INTO t1 (numeropost,numreponse,pseudo) VALUES (1,1,'joce'),(1,2,'joce'),(1,3,'test');
  255. -- error 1242
  256. EXPLAIN EXTENDED SELECT numreponse FROM t1 WHERE numeropost='1' AND numreponse=(SELECT 1 FROM t1 WHERE numeropost='1');
  257. EXPLAIN EXTENDED SELECT MAX(numreponse) FROM t1 WHERE numeropost='1';
  258. EXPLAIN EXTENDED SELECT numreponse FROM t1 WHERE numeropost='1' AND numreponse=(SELECT MAX(numreponse) FROM t1 WHERE numeropost='1');
  259. drop table t1;
  260. CREATE TABLE t1 (a int(1));
  261. INSERT INTO t1 VALUES (1);
  262. SELECT 1 FROM (SELECT a FROM t1) b HAVING (SELECT b.a)=1;
  263. drop table t1;
  264. #update with subselects
  265. create table t1 (a int NOT NULL, b int, primary key (a));
  266. create table t2 (a int NOT NULL, b int, primary key (a));
  267. insert into t1 values (0, 10),(1, 11),(2, 12);
  268. insert into t2 values (1, 21),(2, 22),(3, 23);
  269. select * from t1;
  270. -- error 1093
  271. update t1 set b= (select b from t1);
  272. -- error 1242
  273. update t1 set b= (select b from t2);
  274. update t1 set b= (select b from t2 where t1.a = t2.a);
  275. select * from t1;
  276. drop table t1, t2;
  277. #delete with subselects
  278. create table t1 (a int NOT NULL, b int, primary key (a));
  279. create table t2 (a int NOT NULL, b int, primary key (a));
  280. insert into t1 values (0, 10),(1, 11),(2, 12);
  281. insert into t2 values (1, 21),(2, 12),(3, 23);
  282. select * from t1;
  283. select * from t1 where b = (select b from t2 where t1.a = t2.a);
  284. -- error 1093
  285. delete from t1 where b = (select b from t1);
  286. -- error 1242
  287. delete from t1 where b = (select b from t2);
  288. delete from t1 where b = (select b from t2 where t1.a = t2.a);
  289. select * from t1;
  290. drop table t1, t2;
  291. #multi-delete with subselects
  292. create table t11 (a int NOT NULL, b int, primary key (a));
  293. create table t12 (a int NOT NULL, b int, primary key (a));
  294. create table t2 (a int NOT NULL, b int, primary key (a));
  295. insert into t11 values (0, 10),(1, 11),(2, 12);
  296. insert into t12 values (33, 10),(22, 11),(2, 12);
  297. insert into t2 values (1, 21),(2, 12),(3, 23);
  298. select * from t11;
  299. select * from t12;
  300. -- error 1093
  301. delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t12 where t11.a = t12.a);
  302. -- error 1242
  303. delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t2);
  304. delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t2 where t11.a = t2.a);
  305. select * from t11;
  306. select * from t12;
  307. drop table t11, t12, t2;
  308. #insert with subselects
  309. CREATE TABLE t1 (x int);
  310. create table t2 (a int);
  311. create table t3 (b int);
  312. insert into t2 values (1);
  313. insert into t3 values (1),(2);
  314. -- error 1093
  315. INSERT INTO t1 (x) VALUES ((SELECT x FROM t1));
  316. -- error 1242
  317. INSERT INTO t1 (x) VALUES ((SELECT b FROM t3));
  318. INSERT INTO t1 (x) VALUES ((SELECT a FROM t2));
  319. select * from t1;
  320. insert into t2 values (1);
  321. INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
  322. -- sleep 1
  323. select * from t1;
  324. INSERT INTO t1 (x) select (SELECT SUM(a)+1 FROM t2) FROM t2;
  325. select * from t1;
  326. INSERT INTO t1 (x) select (SELECT SUM(x)+2 FROM t1) FROM t2;
  327. -- error 1054
  328. INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
  329. INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
  330. -- sleep 1
  331. select * from t1;
  332. #
  333. #TODO: should be uncommented after bug 380 fix pushed
  334. #INSERT INTO t1 (x) SELECT (SELECT SUM(a)+b FROM t2) from t3;
  335. #select * from t1;
  336. drop table t1, t2, t3;
  337. #replace with subselects
  338. CREATE TABLE t1 (x int not null, y int, primary key (x));
  339. create table t2 (a int);
  340. create table t3 (a int);
  341. insert into t2 values (1);
  342. insert into t3 values (1),(2);
  343. select * from t1;
  344. -- error 1093
  345. replace into t1 (x, y) VALUES ((SELECT x FROM t1), (SELECT a+1 FROM t2));
  346. -- error 1242
  347. replace into t1 (x, y) VALUES ((SELECT a FROM t3), (SELECT a+1 FROM t2));
  348. replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+1 FROM t2));
  349. select * from t1;
  350. replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+2 FROM t2));
  351. select * from t1;
  352. replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
  353. -- sleep 1
  354. select * from t1;
  355. replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
  356. -- sleep 1
  357. select * from t1;
  358. replace LOW_PRIORITY into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
  359. select * from t1;
  360. drop table t1, t2, t3;
  361. -- error 1096
  362. SELECT * FROM (SELECT 1) b WHERE 1 IN (SELECT *);
  363. CREATE TABLE t2 (id int(11) default NULL, KEY id (id)) ENGINE=MyISAM CHARSET=latin1;
  364. INSERT INTO t2 VALUES (1),(2);
  365. SELECT * FROM t2 WHERE id IN (SELECT 1);
  366. EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1);
  367. SELECT * FROM t2 WHERE id IN (SELECT 1 UNION SELECT 3);
  368. SELECT * FROM t2 WHERE id IN (SELECT 1+(select 1));
  369. EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1+(select 1));
  370. EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1 UNION SELECT 3);
  371. SELECT * FROM t2 WHERE id IN (SELECT 5 UNION SELECT 3);
  372. SELECT * FROM t2 WHERE id IN (SELECT 5 UNION SELECT 2);
  373. -- error 1093
  374. INSERT INTO t2 VALUES ((SELECT * FROM t2));
  375. -- error 1093
  376. INSERT INTO t2 VALUES ((SELECT id FROM t2));
  377. SELECT * FROM t2;
  378. CREATE TABLE t1 (id int(11) default NULL, KEY id (id)) ENGINE=MyISAM CHARSET=latin1;
  379. INSERT INTO t1 values (1),(1);
  380. -- error 1242
  381. UPDATE t2 SET id=(SELECT * FROM t1);
  382. drop table t2, t1;
  383. #NULL test
  384. create table t1 (a int);
  385. insert into t1 values (1),(2),(3);
  386. select 1 IN (SELECT * from t1);
  387. select 10 IN (SELECT * from t1);
  388. select NULL IN (SELECT * from t1);
  389. update t1 set a=NULL where a=2;
  390. select 1 IN (SELECT * from t1);
  391. select 3 IN (SELECT * from t1);
  392. select 10 IN (SELECT * from t1);
  393. select 1 > ALL (SELECT * from t1);
  394. select 10 > ALL (SELECT * from t1);
  395. select 1 > ANY (SELECT * from t1);
  396. select 10 > ANY (SELECT * from t1);
  397. drop table t1;
  398. create table t1 (a varchar(20));
  399. insert into t1 values ('A'),('BC'),('DEF');
  400. select 'A' IN (SELECT * from t1);
  401. select 'XYZS' IN (SELECT * from t1);
  402. select NULL IN (SELECT * from t1);
  403. update t1 set a=NULL where a='BC';
  404. select 'A' IN (SELECT * from t1);
  405. select 'DEF' IN (SELECT * from t1);
  406. select 'XYZS' IN (SELECT * from t1);
  407. select 'A' > ALL (SELECT * from t1);
  408. select 'XYZS' > ALL (SELECT * from t1);
  409. select 'A' > ANY (SELECT * from t1);
  410. select 'XYZS' > ANY (SELECT * from t1);
  411. drop table t1;
  412. create table t1 (a float);
  413. insert into t1 values (1.5),(2.5),(3.5);
  414. select 1.5 IN (SELECT * from t1);
  415. select 10.5 IN (SELECT * from t1);
  416. select NULL IN (SELECT * from t1);
  417. update t1 set a=NULL where a=2.5;
  418. select 1.5 IN (SELECT * from t1);
  419. select 3.5 IN (SELECT * from t1);
  420. select 10.5 IN (SELECT * from t1);
  421. select 1.5 > ALL (SELECT * from t1);
  422. select 10.5 > ALL (SELECT * from t1);
  423. select 1.5 > ANY (SELECT * from t1);
  424. select 10.5 > ANY (SELECT * from t1);
  425. explain extended select (select a+1) from t1;
  426. select (select a+1) from t1;
  427. drop table t1;
  428. #
  429. # Null with keys
  430. #
  431. CREATE TABLE t1 (a int(11) NOT NULL default '0', PRIMARY KEY  (a));
  432. CREATE TABLE t2 (a int(11) default '0', INDEX (a));
  433. INSERT INTO t1 VALUES (1),(2),(3),(4);
  434. INSERT INTO t2 VALUES (1),(2),(3);
  435. SELECT t1.a, t1.a in (select t2.a from t2) FROM t1;
  436. explain extended SELECT t1.a, t1.a in (select t2.a from t2) FROM t1;
  437. CREATE TABLE t3 (a int(11) default '0');
  438. INSERT INTO t3 VALUES (1),(2),(3);
  439. SELECT t1.a, t1.a in (select t2.a from t2,t3 where t3.a=t2.a) FROM t1;
  440. explain extended SELECT t1.a, t1.a in (select t2.a from t2,t3 where t3.a=t2.a) FROM t1;
  441. drop table t1,t2,t3;
  442. #LIMIT is not supported now
  443. create table t1 (a float);
  444. -- error 1235
  445. select 10.5 IN (SELECT * from t1 LIMIT 1);
  446. -- error 1235
  447. select 10.5 IN (SELECT * from t1 LIMIT 1 UNION SELECT 1.5);
  448. drop table t1;
  449. create table t1 (a int, b int, c varchar(10));
  450. create table t2 (a int);
  451. insert into t1 values (1,2,'a'),(2,3,'b'),(3,4,'c');
  452. insert into t2 values (1),(2),(NULL);
  453. select a, (select a,b,c from t1 where t1.a=t2.a) = ROW(a,2,'a'),(select c from t1 where a=t2.a)  from t2;
  454. select a, (select a,b,c from t1 where t1.a=t2.a) = ROW(a,3,'b'),(select c from t1 where a=t2.a) from t2;
  455. select a, (select a,b,c from t1 where t1.a=t2.a) = ROW(a,4,'c'),(select c from t1 where a=t2.a) from t2;
  456. drop table t1,t2;
  457. create table t1 (a int, b real, c varchar(10));
  458. insert into t1 values (1, 1, 'a'), (2,2,'b'), (NULL, 2, 'b');
  459. select ROW(1, 1, 'a') IN (select a,b,c from t1);
  460. select ROW(1, 2, 'a') IN (select a,b,c from t1);
  461. select ROW(1, 1, 'a') IN (select b,a,c from t1);
  462. select ROW(1, 1, 'a') IN (select a,b,c from t1 where a is not null);
  463. select ROW(1, 2, 'a') IN (select a,b,c from t1 where a is not null);
  464. select ROW(1, 1, 'a') IN (select b,a,c from t1 where a is not null);
  465. select ROW(1, 1, 'a') IN (select a,b,c from t1 where c='b' or c='a');
  466. select ROW(1, 2, 'a') IN (select a,b,c from t1 where c='b' or c='a');
  467. select ROW(1, 1, 'a') IN (select b,a,c from t1 where c='b' or c='a');
  468. -- error 1235
  469. select ROW(1, 1, 'a') IN (select b,a,c from t1 limit 2);
  470. drop table t1;
  471. create table t1 (a int);
  472. insert into t1 values (1);
  473. do @a:=(SELECT a from t1);
  474. select @a;
  475. set @a:=2;
  476. set @a:=(SELECT a from t1);
  477. select @a;
  478. drop table t1;
  479. -- error 1146
  480. do (SELECT a from t1);
  481. -- error 1146
  482. set @a:=(SELECT a from t1);
  483. CREATE TABLE t1 (a int, KEY(a)); 
  484. HANDLER t1 OPEN;
  485. -- error 1064
  486. HANDLER t1 READ a=((SELECT 1));
  487. HANDLER t1 CLOSE;
  488. drop table t1;
  489. create table t1 (a int);
  490. create table t2 (b int);
  491. insert into t1 values (1),(2);
  492. insert into t2 values (1);
  493. select a from t1 where a in (select a from t1 where a in (select b from t2));
  494. drop table t1, t2;
  495. create table t1 (a int, b int);
  496. create table t2 like t1;
  497. insert into t1 values (1,2),(1,3),(1,4),(1,5);
  498. insert into t2 values (1,2),(1,3);
  499. select * from t1 where row(a,b) in (select a,b from t2);
  500. drop table t1, t2;
  501. CREATE TABLE `t1` (`i` int(11) NOT NULL default '0',PRIMARY KEY  (`i`)) ENGINE=MyISAM CHARSET=latin1;
  502. INSERT INTO t1 VALUES (1);
  503. UPDATE t1 SET i=i+1 WHERE i=(SELECT MAX(i));
  504. select * from t1;
  505. drop table t1;
  506. #test of uncacheable subqueries
  507. CREATE TABLE t1 (a int(1));
  508. EXPLAIN EXTENDED SELECT (SELECT RAND() FROM t1) FROM t1;
  509. EXPLAIN EXTENDED SELECT (SELECT ENCRYPT('test') FROM t1) FROM t1;
  510. EXPLAIN EXTENDED SELECT (SELECT BENCHMARK(1,1) FROM t1) FROM t1;
  511. drop table t1;
  512. CREATE TABLE `t1` (
  513.   `mot` varchar(30) character set latin1 NOT NULL default '',
  514.   `topic` mediumint(8) unsigned NOT NULL default '0',
  515.   `date` date NOT NULL default '0000-00-00',
  516.   `pseudo` varchar(35) character set latin1 NOT NULL default '',
  517.   PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`),
  518.   KEY `pseudo` (`pseudo`,`date`,`topic`),
  519.   KEY `topic` (`topic`)
  520. ) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
  521. CREATE TABLE `t2` (
  522.   `mot` varchar(30) character set latin1 NOT NULL default '',
  523.   `topic` mediumint(8) unsigned NOT NULL default '0',
  524.   `date` date NOT NULL default '0000-00-00',
  525.   `pseudo` varchar(35) character set latin1 NOT NULL default '',
  526.   PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`),
  527.   KEY `pseudo` (`pseudo`,`date`,`topic`),
  528.   KEY `topic` (`topic`)
  529. ) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
  530. CREATE TABLE `t3` (
  531.   `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  532.   `maxnumrep` int(10) unsigned NOT NULL default '0',
  533.   PRIMARY KEY  (`numeropost`),
  534.   UNIQUE KEY `maxnumrep` (`maxnumrep`)
  535. ) ENGINE=MyISAM CHARSET=latin1;
  536. INSERT INTO t1 VALUES ('joce','1','','joce'),('test','2','','test');
  537. INSERT INTO t2 VALUES ('joce','1','','joce'),('test','2','','test');
  538. INSERT INTO t3 VALUES (1,1);
  539. SELECT DISTINCT topic FROM t2 WHERE NOT EXISTS(SELECT * FROM t3 WHERE
  540. numeropost=topic);
  541. select * from t1;
  542. DELETE FROM t1 WHERE topic IN (SELECT DISTINCT topic FROM t2 WHERE NOT
  543. EXISTS(SELECT * FROM t3 WHERE numeropost=topic));
  544. select * from t1;
  545. drop table t1, t2, t3;
  546. SELECT * FROM (SELECT 1 as a,(SELECT a)) a;
  547. CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT 1)) a;
  548. SHOW CREATE TABLE t1;
  549. drop table t1;
  550. CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a)) a;
  551. SHOW CREATE TABLE t1;
  552. drop table t1;
  553. CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a+0)) a;
  554. SHOW CREATE TABLE t1;
  555. drop table t1;
  556. CREATE TABLE t1 SELECT (SELECT 1 as a UNION SELECT 1+1 limit 1,1) as a;
  557. select * from t1;
  558. SHOW CREATE TABLE t1;
  559. drop table t1;
  560. create table t1 (a int);
  561. insert into t1 values (1), (2), (3);
  562. explain extended select a,(select (select rand() from t1 limit 1)  from t1 limit 1)
  563. from t1;
  564. drop table t1;
  565. #
  566. # error in IN
  567. #
  568. -- error 1146
  569. select t1.Continent, t2.Name, t2.Population from t1 LEFT JOIN t2 ON t1.Code = t2.Country  where t2.Population IN (select max(t2.Population) AS Population from t2, t1 where t2.Country = t1.Code group by Continent);
  570. #
  571. # complex subquery
  572. #
  573. CREATE TABLE t1 (
  574.   ID int(11) NOT NULL auto_increment,
  575.   name char(35) NOT NULL default '',
  576.   t2 char(3) NOT NULL default '',
  577.   District char(20) NOT NULL default '',
  578.   Population int(11) NOT NULL default '0',
  579.   PRIMARY KEY  (ID)
  580. ) ENGINE=MyISAM;
  581. INSERT INTO t1 VALUES (130,'Sydney','AUS','New South Wales',3276207);
  582. INSERT INTO t1 VALUES (131,'Melbourne','AUS','Victoria',2865329);
  583. INSERT INTO t1 VALUES (132,'Brisbane','AUS','Queensland',1291117);
  584. CREATE TABLE t2 (
  585.   Code char(3) NOT NULL default '',
  586.   Name char(52) NOT NULL default '',
  587.   Continent enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL default 'Asia',
  588.   Region char(26) NOT NULL default '',
  589.   SurfaceArea float(10,2) NOT NULL default '0.00',
  590.   IndepYear smallint(6) default NULL,
  591.   Population int(11) NOT NULL default '0',
  592.   LifeExpectancy float(3,1) default NULL,
  593.   GNP float(10,2) default NULL,
  594.   GNPOld float(10,2) default NULL,
  595.   LocalName char(45) NOT NULL default '',
  596.   GovernmentForm char(45) NOT NULL default '',
  597.   HeadOfState char(60) default NULL,
  598.   Capital int(11) default NULL,
  599.   Code2 char(2) NOT NULL default '',
  600.   PRIMARY KEY  (Code)
  601. ) ENGINE=MyISAM;
  602. INSERT INTO t2 VALUES ('AUS','Australia','Oceania','Australia and New Zealand',7741220.00,1901,18886000,79.8,351182.00,392911.00,'Australia','Constitutional Monarchy, Federation','Elisabeth II',135,'AU');
  603. INSERT INTO t2 VALUES ('AZE','Azerbaijan','Asia','Middle East',86600.00,1991,7734000,62.9,4127.00,4100.00,'Az鋜baycan','Federal Republic','Heyd鋜 膌iyev',144,'AZ');
  604. select t2.Continent, t1.Name, t1.Population from t2 LEFT JOIN t1 ON t2.Code = t1.t2  where t1.Population IN (select max(t1.Population) AS Population from t1, t2 where t1.t2 = t2.Code group by Continent); 
  605. drop table t1, t2;
  606. #
  607. # constants in IN
  608. #
  609. CREATE TABLE `t1` (
  610.   `id` mediumint(8) unsigned NOT NULL auto_increment,
  611.   `pseudo` varchar(35) character set latin1 NOT NULL default '',
  612.   PRIMARY KEY  (`id`),
  613.   UNIQUE KEY `pseudo` (`pseudo`)
  614. ) ENGINE=MyISAM PACK_KEYS=1 ROW_FORMAT=DYNAMIC;
  615. INSERT INTO t1 (pseudo) VALUES ('test');
  616. SELECT 0 IN (SELECT 1 FROM t1 a);
  617. EXPLAIN EXTENDED SELECT 0 IN (SELECT 1 FROM t1 a);
  618. INSERT INTO t1 (pseudo) VALUES ('test1');
  619. SELECT 0 IN (SELECT 1 FROM t1 a);
  620. EXPLAIN EXTENDED SELECT 0 IN (SELECT 1 FROM t1 a);
  621. drop table t1;
  622. CREATE TABLE `t1` (
  623.   `i` int(11) NOT NULL default '0',
  624.   PRIMARY KEY  (`i`)
  625. ) ENGINE=MyISAM CHARSET=latin1;
  626. INSERT INTO t1 VALUES (1);
  627. UPDATE t1 SET i=i+(SELECT MAX(i) FROM (SELECT 1) t) WHERE i=(SELECT MAX(i));
  628. UPDATE t1 SET i=i+1 WHERE i=(SELECT MAX(i));
  629. -- error 1109
  630. UPDATE t1 SET t.i=i+(SELECT MAX(i) FROM (SELECT 1) t);
  631. select * from t1;
  632. drop table t1;
  633. #
  634. # Multi update test
  635. #
  636. CREATE TABLE t1 (
  637.   id int(11) default NULL
  638. ) ENGINE=MyISAM CHARSET=latin1;
  639. INSERT INTO t1 VALUES (1),(1),(2),(2),(1),(3);
  640. CREATE TABLE t2 (
  641.   id int(11) default NULL,
  642.   name varchar(15) default NULL
  643. ) ENGINE=MyISAM CHARSET=latin1;
  644. INSERT INTO t2 VALUES (4,'vita'), (1,'vita'), (2,'vita'), (1,'vita');
  645. update t1, t2 set t2.name='lenka' where t2.id in (select id from t1);
  646. select * from t2;
  647. drop table t1,t2;
  648. #
  649. # correct NULL in <CONSTANT> IN (SELECT ...)
  650. #
  651. create table t1 (a int, unique index indexa (a)); 
  652. insert into t1 values (-1), (-4), (-2), (NULL); 
  653. select -10 IN (select a from t1 FORCE INDEX (indexa)); 
  654. drop table t1;
  655. #
  656. # Test optimization for sub selects
  657. #
  658. create table t1 (id int not null auto_increment primary key, salary int, key(salary));
  659. insert into t1 (salary) values (100),(1000),(10000),(10),(500),(5000),(50000);
  660. explain extended SELECT id FROM t1 where salary = (SELECT MAX(salary) FROM t1);
  661. drop table t1;
  662. CREATE TABLE t1 (
  663.   ID int(10) unsigned NOT NULL auto_increment,
  664.   SUB_ID int(3) unsigned NOT NULL default '0',
  665.   REF_ID int(10) unsigned default NULL,
  666.   REF_SUB int(3) unsigned default '0',
  667.   PRIMARY KEY (ID,SUB_ID),
  668.   UNIQUE KEY t1_PK (ID,SUB_ID),
  669.   KEY t1_FK (REF_ID,REF_SUB),
  670.   KEY t1_REFID (REF_ID)
  671. ) ENGINE=MyISAM CHARSET=cp1251;
  672. INSERT INTO t1 VALUES (1,0,NULL,NULL),(2,0,NULL,NULL);
  673. SELECT DISTINCT REF_ID FROM t1 WHERE ID= (SELECT DISTINCT REF_ID FROM t1 WHERE ID=2);
  674. DROP TABLE t1;
  675. #
  676. # uninterruptable update
  677. #
  678. create table t1 (a int, b int);
  679. create table t2 (a int, b int);
  680. insert into t1 values (1,0), (2,0), (3,0);
  681. insert into t2 values (1,1), (2,1), (3,1), (2,2);
  682. update ignore t1 set b=(select b from t2 where t1.a=t2.a);
  683. select * from t1;
  684. drop table t1, t2;
  685. #
  686. # reduced subselect in ORDER BY & GROUP BY clauses
  687. #
  688. CREATE TABLE `t1` (
  689.   `id` mediumint(8) unsigned NOT NULL auto_increment,
  690.   `pseudo` varchar(35) NOT NULL default '',
  691.   `email` varchar(60) NOT NULL default '',
  692.   PRIMARY KEY  (`id`),
  693.   UNIQUE KEY `email` (`email`),
  694.   UNIQUE KEY `pseudo` (`pseudo`)
  695. ) ENGINE=MyISAM CHARSET=latin1 PACK_KEYS=1 ROW_FORMAT=DYNAMIC;
  696. INSERT INTO t1 (id,pseudo,email) VALUES (1,'test','test'),(2,'test1','test1');
  697. SELECT pseudo as a, pseudo as b FROM t1 GROUP BY (SELECT a) ORDER BY (SELECT id*1);
  698. drop table if exists t1;
  699. (SELECT 1 as a) UNION (SELECT 1) ORDER BY (SELECT a+0);
  700. #
  701. # IN subselect optimization test
  702. #
  703. create table t1 (a int not null, b int, primary key (a));
  704. create table t2 (a int not null, primary key (a));
  705. create table t3 (a int not null, b int, primary key (a));
  706. insert into t1 values (1,10), (2,20), (3,30),  (4,40);
  707. insert into t2 values (2), (3), (4), (5);
  708. insert into t3 values (10,3), (20,4), (30,5);
  709. select * from t2 where t2.a in (select a from t1);
  710. explain extended select * from t2 where t2.a in (select a from t1);
  711. select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  712. explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  713. select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
  714. explain extended select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
  715. drop table t1, t2, t3;
  716. create table t1 (a int, b int, index a (a,b));
  717. create table t2 (a int, index a (a));
  718. create table t3 (a int, b int, index a (a));
  719. insert into t1 values (1,10), (2,20), (3,30), (4,40);
  720. disable_query_log;
  721. # making table large enough
  722. let $1 = 10000;
  723. while ($1)
  724.  {
  725.   eval insert into t1 values (rand()*100000+200,rand()*100000); 
  726.   dec $1;
  727.  }
  728. enable_query_log;
  729. insert into t2 values (2), (3), (4), (5);
  730. insert into t3 values (10,3), (20,4), (30,5);
  731. select * from t2 where t2.a in (select a from t1);
  732. explain extended select * from t2 where t2.a in (select a from t1);
  733. select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  734. explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  735. select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
  736. explain extended select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
  737. insert into t1 values (3,31);
  738. select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  739. select * from t2 where t2.a in (select a from t1 where t1.b <> 30 and t1.b <> 31);
  740. explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
  741. drop table t1, t2, t3;
  742. #
  743. # alloc_group_fields() working
  744. #
  745. create table t1 (a int, b int);
  746. create table t2 (a int, b int);
  747. create table t3 (a int, b int);
  748. insert into t1 values (0,100),(1,2), (1,3), (2,2), (2,7), (2,-1), (3,10);
  749. insert into t2 values (0,0), (1,1), (2,1), (3,1), (4,1);
  750. insert into t3 values (3,3), (2,2), (1,1); 
  751. select a,(select count(distinct t1.b) as sum from t1,t2 where t1.a=t2.a and t2.b > 0 and t1.a <= t3.b group by t1.a order by sum limit 1) from t3;
  752. drop table t1,t2,t3;
  753. #
  754. # aggregate functions in HAVING test
  755. #
  756. create table t1 (s1 int);
  757. create table t2 (s1 int);
  758. insert into t1 values (1);
  759. insert into t2 values (1);
  760. select * from t1 where exists (select s1 from t2 having max(t2.s1)=t1.s1);
  761. drop table t1,t2;
  762. #
  763. # update subquery with wrong field (to force name resolving
  764. # in UPDATE name space)
  765. #
  766. create table t1 (s1 int);
  767. create table t2 (s1 int);
  768. insert into t1 values (1);
  769. insert into t2 values (1);
  770. -- error 1054
  771. update t1 set  s1 = s1 + 1 where 1 = (select x.s1 as A from t2 WHERE t2.s1 > t1.s1 order by A);
  772. DROP TABLE t1, t2;
  773. #
  774. # collation test
  775. #
  776. CREATE TABLE t1 (s1 CHAR(5) COLLATE latin1_german1_ci,
  777.                  s2 CHAR(5) COLLATE latin1_swedish_ci);
  778. INSERT INTO t1 VALUES ('z','?');
  779. -- error 1267
  780. select * from t1 where s1 > (select max(s2) from t1);
  781. -- error 1267
  782. select * from t1 where s1 > any (select max(s2) from t1);
  783. drop table t1;
  784. #
  785. # aggregate functions reinitialization
  786. #
  787. create table t1(toid int,rd int);
  788. create table t2(userid int,pmnew int,pmtotal int);
  789. insert into t2 values(1,0,0),(2,0,0);
  790. insert into t1 values(1,0),(1,0),(1,0),(1,12),(1,15),(1,123),(1,12312),(1,12312),(1,123),(2,0),(2,0),(2,1),(2,2);
  791. select userid,pmtotal,pmnew, (select count(rd) from t1 where toid=t2.userid) calc_total, (select count(rd) from t1 where rd=0 and toid=t2.userid) calc_new from t2 where userid in (select distinct toid from t1);
  792. drop table t1, t2;
  793. #
  794. # row union
  795. #
  796. create table t1 (s1 char(5));
  797. -- error 1241
  798. select (select 'a','b' from t1 union select 'a','b' from t1) from t1;
  799. insert into t1 values ('tttt');
  800. select * from t1 where ('a','b')=(select 'a','b' from t1 union select 'a','b' from t1);
  801. explain extended (select * from t1);
  802. (select * from t1);
  803. drop table t1;
  804. #
  805. # IN optimisation test results
  806. #
  807. create table t1 (s1 char(5), index s1(s1));
  808. create table t2 (s1 char(5), index s1(s1));
  809. insert into t1 values ('a1'),('a2'),('a3');
  810. insert into t2 values ('a1'),('a2');
  811. select s1, s1 NOT IN (SELECT s1 FROM t2) from t1;
  812. select s1, s1 = ANY (SELECT s1 FROM t2) from t1;
  813. select s1, s1 <> ALL (SELECT s1 FROM t2) from t1;
  814. select s1, s1 NOT IN (SELECT s1 FROM t2 WHERE s1 < 'a2') from t1;
  815. explain extended select s1, s1 NOT IN (SELECT s1 FROM t2) from t1;
  816. explain extended select s1, s1 = ANY (SELECT s1 FROM t2) from t1;
  817. explain extended select s1, s1 <> ALL (SELECT s1 FROM t2) from t1;
  818. explain extended select s1, s1 NOT IN (SELECT s1 FROM t2 WHERE s1 < 'a2') from t1;
  819. drop table t1,t2;
  820. #
  821. # correct ALL optimisation
  822. #
  823. create table t2 (a int, b int);
  824. create table t3 (a int);
  825. insert into t3 values (6),(7),(3);
  826. select * from t3 where a >= all (select b from t2);
  827. explain extended select * from t3 where a >= all (select b from t2);
  828. select * from t3 where a >= some (select b from t2);
  829. explain extended select * from t3 where a >= some (select b from t2);
  830. select * from t3 where a >= all (select b from t2 group by 1);
  831. explain extended select * from t3 where a >= all (select b from t2 group by 1);
  832. select * from t3 where a >= some (select b from t2 group by 1);
  833. explain extended select * from t3 where a >= some (select b from t2 group by 1);
  834. select * from t3 where NULL >= any (select b from t2);
  835. explain extended select * from t3 where NULL >= any (select b from t2);
  836. select * from t3 where NULL >= any (select b from t2 group by 1);
  837. explain extended select * from t3 where NULL >= any (select b from t2 group by 1);
  838. select * from t3 where NULL >= some (select b from t2);
  839. explain extended select * from t3 where NULL >= some (select b from t2);
  840. select * from t3 where NULL >= some (select b from t2 group by 1);
  841. explain extended select * from t3 where NULL >= some (select b from t2 group by 1);
  842. #
  843. # optimized static ALL/ANY with grouping
  844. #
  845. insert into t2 values (2,2), (2,1), (3,3), (3,1);
  846. select * from t3 where a > all (select max(b) from t2 group by a);
  847. explain extended select * from t3 where a > all (select max(b) from t2 group by a);
  848. drop table t2, t3;
  849. #
  850. # correct used_tables()
  851. #
  852. CREATE TABLE `t1` ( `id` mediumint(9) NOT NULL auto_increment, `taskid` bigint(20) NOT NULL default '0', `dbid` int(11) NOT NULL default '0', `create_date` datetime NOT NULL default '0000-00-00 00:00:00', `last_update` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY  (`id`)) ENGINE=MyISAM CHARSET=latin1 AUTO_INCREMENT=3 ;
  853. INSERT INTO `t1` (`id`, `taskid`, `dbid`, `create_date`,`last_update`) VALUES (1, 1, 15, '2003-09-29 10:31:36', '2003-09-29 10:31:36'), (2, 1, 21, now(), now());
  854. CREATE TABLE `t2` (`db_id` int(11) NOT NULL auto_increment,`name` varchar(200) NOT NULL default '',`primary_uid` smallint(6) NOT NULL default '0',`secondary_uid` smallint(6) NOT NULL default '0',PRIMARY KEY  (`db_id`),UNIQUE KEY `name_2` (`name`),FULLTEXT KEY `name` (`name`)) ENGINE=MyISAM CHARSET=latin1 AUTO_INCREMENT=2147483647;
  855. INSERT INTO `t2` (`db_id`, `name`, `primary_uid`, `secondary_uid`) VALUES (18, 'Not Set 1', 0, 0),(19, 'Valid', 1, 2),(20, 'Valid 2', 1, 2),(21, 'Should Not Return', 1, 2),(26, 'Not Set 2', 0, 0),(-1, 'ALL DB'S', 0, 0);
  856. CREATE TABLE `t3` (`taskgenid` mediumint(9) NOT NULL auto_increment,`dbid` int(11) NOT NULL default '0',`taskid` int(11) NOT NULL default '0',`mon` tinyint(4) NOT NULL default '1',`tues` tinyint(4) NOT NULL default '1',`wed` tinyint(4) NOT NULL default '1',`thur` tinyint(4) NOT NULL default '1',`fri` tinyint(4) NOT NULL default '1',`sat` tinyint(4) NOT NULL default '0',`sun` tinyint(4) NOT NULL default '0',`how_often` smallint(6) NOT NULL default '1',`userid` smallint(6) NOT NULL default '0',`active` tinyint(4) NOT NULL default '1',PRIMARY KEY  (`taskgenid`)) ENGINE=MyISAM CHARSET=latin1 AUTO_INCREMENT=2 ;
  857. INSERT INTO `t3` (`taskgenid`, `dbid`, `taskid`, `mon`, `tues`,`wed`, `thur`, `fri`, `sat`, `sun`, `how_often`, `userid`, `active`) VALUES (1,-1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1);
  858. CREATE TABLE `t4` (`task_id` smallint(6) NOT NULL default '0',`description` varchar(200) NOT NULL default '') ENGINE=MyISAM CHARSET=latin1;
  859. INSERT INTO `t4` (`task_id`, `description`) VALUES (1, 'Daily Check List'),(2, 'Weekly Status');
  860. select  dbid, name, (date_format(now() , '%Y-%m-%d') - INTERVAL how_often DAY) >= ifnull((SELECT date_format(max(create_date),'%Y-%m-%d') FROM t1 WHERE dbid = b.db_id AND taskid = a.taskgenid), '1950-01-01') from t3 a, t2 b, t4  WHERE dbid = - 1 AND primary_uid = '1' AND t4.task_id = taskid;
  861. SELECT dbid, name FROM t3 a, t2 b, t4 WHERE dbid = - 1 AND primary_uid = '1' AND ((date_format(now() , '%Y-%m-%d') - INTERVAL how_often DAY) >= ifnull((SELECT date_format(max(create_date),'%Y-%m-%d') FROM t1 WHERE dbid = b.db_id AND taskid = a.taskgenid), '1950-01-01')) AND t4.task_id = taskid;
  862. drop table t1,t2,t3,t4;
  863. #
  864. # cardinality check
  865. #
  866. CREATE TABLE t1 (id int(11) default NULL) ENGINE=MyISAM CHARSET=latin1;
  867. INSERT INTO t1 VALUES (1),(5);
  868. CREATE TABLE t2 (id int(11) default NULL) ENGINE=MyISAM CHARSET=latin1;
  869. INSERT INTO t2 VALUES (2),(6);
  870. -- error 1241
  871. select * from t1 where (1,2,6) in (select * from t2);
  872. DROP TABLE t1,t2;
  873. #
  874. # DO and SET with errors
  875. #
  876. create table t1 (s1 int);
  877. insert into t1 values (1);
  878. insert into t1 values (2);
  879. -- error 1242
  880. set sort_buffer_size = (select s1 from t1);
  881. do (select * from t1);
  882. drop table t1;
  883. #
  884. # optimized ALL/ANY with union
  885. #
  886. create table t1 (s1 char);
  887. insert into t1 values ('e');
  888. select * from t1 where 'f' > any (select s1 from t1);
  889. select * from t1 where 'f' > any (select s1 from t1 union select s1 from t1);
  890. explain extended select * from t1 where 'f' > any (select s1 from t1 union select s1 from t1);
  891. drop table t1;
  892. #
  893. # filesort in subquery (restoring join_tab)
  894. #
  895. CREATE TABLE t1 (number char(11) NOT NULL default '') ENGINE=MyISAM CHARSET=latin1;
  896. INSERT INTO t1 VALUES ('69294728265'),('18621828126'),('89356874041'),('95895001874');
  897. CREATE TABLE t2 (code char(5) NOT NULL default '',UNIQUE KEY code (code)) ENGINE=MyISAM CHARSET=latin1;
  898. INSERT INTO t2 VALUES ('1'),('1226'),('1245'),('1862'),('18623'),('1874'),('1967'),('6');
  899. select c.number as phone,(select p.code from t2 p where c.number like concat(p.code, '%') order by length(p.code) desc limit 1) as code from t1 c;
  900. drop table t1, t2;
  901. #
  902. # unresolved field error
  903. #
  904. create table t1 (s1 int); 
  905. create table t2 (s1 int);
  906. -- error 1054
  907. select * from t1 where (select count(*) from t2 where t1.s2) = 1;
  908. -- error 1054
  909. select * from t1 where (select count(*) from t2 group by t1.s2) = 1;
  910. -- error 1109
  911. select count(*) from t2 group by t1.s2;
  912. drop table t1, t2;
  913. #
  914. # fix_fields() in add_ref_to_table_cond()
  915. #
  916. CREATE TABLE t1(COLA FLOAT NOT NULL,COLB FLOAT NOT NULL,COLC VARCHAR(20) DEFAULT NULL,PRIMARY KEY (COLA, COLB));
  917. CREATE TABLE t2(COLA FLOAT NOT NULL,COLB FLOAT NOT NULL,COLC CHAR(1) NOT NULL,PRIMARY KEY (COLA));
  918. INSERT INTO t1 VALUES (1,1,'1A3240'), (1,2,'4W2365');
  919. INSERT INTO t2 VALUES (100, 200, 'C');
  920. SELECT DISTINCT COLC FROM t1 WHERE COLA = (SELECT COLA FROM t2 WHERE COLB = 200 AND COLC ='C' LIMIT 1);
  921. DROP TABLE t1, t2;
  922. CREATE TABLE t1 (a int(1));
  923. INSERT INTO t1 VALUES (1),(1),(1),(1),(1),(2),(3),(4),(5);
  924. SELECT DISTINCT (SELECT a) FROM t1 LIMIT 100;
  925. DROP TABLE t1;
  926. #
  927. # Bug 2198
  928. #
  929. create table t1 (a int, b decimal(13, 3)); 
  930. insert into t1 values (1, 0.123);
  931. select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
  932. delete from t1;
  933. load data infile "subselect.out.file.1" into table t1;
  934. select * from t1;
  935. drop table t1;
  936. #
  937. # Bug 2479
  938. #
  939. CREATE TABLE `t1` (
  940.   `id` int(11) NOT NULL auto_increment,
  941.   `id_cns` tinyint(3) unsigned NOT NULL default '0',
  942.   `tipo` enum('','UNO','DUE') NOT NULL default '',
  943.   `anno_dep` smallint(4) unsigned zerofill NOT NULL default '0000',
  944.   `particolare` mediumint(8) unsigned NOT NULL default '0',
  945.   `generale` mediumint(8) unsigned NOT NULL default '0',
  946.   `bis` tinyint(3) unsigned NOT NULL default '0',
  947.   PRIMARY KEY  (`id`),
  948.   UNIQUE KEY `idx_cns_gen_anno` (`anno_dep`,`id_cns`,`generale`,`particolare`),
  949.   UNIQUE KEY `idx_cns_par_anno` (`id_cns`,`anno_dep`,`tipo`,`particolare`,`bis`)
  950. );
  951. INSERT INTO `t1` VALUES (1,16,'UNO',1987,2048,9681,0),(2,50,'UNO',1987,1536,13987,0),(3,16,'UNO',1987,2432,14594,0),(4,16,'UNO',1987,1792,13422,0),(5,16,'UNO',1987,1025,10240,0),(6,16,'UNO',1987,1026,7089,0);
  952. CREATE TABLE `t2` (
  953.   `id` tinyint(3) unsigned NOT NULL auto_increment,
  954.   `max_anno_dep` smallint(6) unsigned NOT NULL default '0',
  955.   PRIMARY KEY  (`id`)
  956. );
  957. INSERT INTO `t2` VALUES (16,1987),(50,1990),(51,1990);
  958. SELECT cns.id, cns.max_anno_dep, cns.max_anno_dep = (SELECT s.anno_dep FROM t1 AS s WHERE s.id_cns = cns.id ORDER BY s.anno_dep DESC LIMIT 1) AS PIPPO FROM t2 AS cns;
  959. DROP TABLE t1, t2;
  960. #
  961. # GLOBAL LIMIT
  962. #
  963. create table t1 (a int);
  964. insert into t1 values (1), (2), (3);
  965. SET SQL_SELECT_LIMIT=1;
  966. select sum(a) from (select * from t1) as a;
  967. select 2 in (select * from t1);
  968. SET SQL_SELECT_LIMIT=default;
  969. drop table t1;
  970. #
  971. # Bug #3118: subselect + order by
  972. #
  973. CREATE TABLE t1 (a int, b int, INDEX (a));
  974. INSERT INTO t1 VALUES (1, 1), (1, 2), (1, 3);
  975. SELECT * FROM t1 WHERE a = (SELECT MAX(a) FROM t1 WHERE a = 1) ORDER BY b;
  976. DROP TABLE t1;
  977. # Item_cond fix field
  978. #
  979. create table t1(val varchar(10));
  980. insert into t1 values ('aaa'), ('bbb'),('eee'),('mmm'),('ppp');
  981. select count(*) from t1 as w1 where w1.val in (select w2.val from t1 as w2 where w2.val like 'm%') and w1.val in (select w3.val from t1 as w3 where w3.val like 'e%');
  982. drop table t1;
  983. #
  984. # ref_or_null replacing with ref
  985. #
  986. create table t1 (id int not null, text varchar(20) not null default '', primary key (id));
  987. insert into t1 (id, text) values (1, 'text1'), (2, 'text2'), (3, 'text3'), (4, 'text4'), (5, 'text5'), (6, 'text6'), (7, 'text7'), (8, 'text8'), (9, 'text9'), (10, 'text10'), (11, 'text11'), (12, 'text12');
  988. select * from t1 where id not in (select id from t1 where id < 8);
  989. select * from t1 as tt where not exists (select id from t1 where id < 8 and (id = tt.id or id is null) having id is not null);
  990. explain extended select * from t1 where id not in (select id from t1 where id < 8);
  991. explain extended select * from t1 as tt where not exists (select id from t1 where id < 8 and (id = tt.id or id is null) having id is not null);
  992. insert into t1 (id, text) values (1000, 'text1000'), (1001, 'text1001');
  993. create table t2 (id int not null, text varchar(20) not null default '', primary key (id));
  994. insert into t2 (id, text) values (1, 'text1'), (2, 'text2'), (3, 'text3'), (4, 'text4'), (5, 'text5'), (6, 'text6'), (7, 'text7'), (8, 'text8'), (9, 'text9'), (10, 'text10'), (11, 'text1'), (12, 'text2'), (13, 'text3'), (14, 'text4'), (15, 'text5'), (16, 'text6'), (17, 'text7'), (18, 'text8'), (19, 'text9'), (20, 'text10'),(21, 'text1'), (22, 'text2'), (23, 'text3'), (24, 'text4'), (25, 'text5'), (26, 'text6'), (27, 'text7'), (28, 'text8'), (29, 'text9'), (30, 'text10'), (31, 'text1'), (32, 'text2'), (33, 'text3'), (34, 'text4'), (35, 'text5'), (36, 'text6'), (37, 'text7'), (38, 'text8'), (39, 'text9'), (40, 'text10'), (41, 'text1'), (42, 'text2'), (43, 'text3'), (44, 'text4'), (45, 'text5'), (46, 'text6'), (47, 'text7'), (48, 'text8'), (49, 'text9'), (50, 'text10');
  995. select * from t1 a left join t2 b on (a.id=b.id or b.id is null) join t1 c on (if(isnull(b.id), 1000, b.id)=c.id);
  996. explain extended select * from t1 a left join t2 b on (a.id=b.id or b.id is null) join t1 c on (if(isnull(b.id), 1000, b.id)=c.id);
  997. drop table t1,t2;
  998. #
  999. # Static tables & rund() in subqueries
  1000. #
  1001. create table t1 (a int);
  1002. insert into t1 values (1);
  1003. explain select benchmark(1000, (select a from t1 where a=sha(rand())));
  1004. drop table t1;
  1005. #
  1006. # bug 3188
  1007. #
  1008. create table t1(id int);
  1009. create table t2(id int);
  1010. create table t3(flag int);
  1011. -- error 1064
  1012. select (select * from t3 where id not null) from t1, t2;
  1013. drop table t1,t2,t3;
  1014. #
  1015. # aggregate functions (Bug #3505)
  1016. #
  1017. CREATE TABLE t1 (id INT);
  1018. CREATE TABLE t2 (id INT);
  1019. INSERT INTO t1 VALUES (1), (2);
  1020. INSERT INTO t2 VALUES (1);
  1021. SELECT t1.id, ( SELECT COUNT(t.id) FROM t2 AS t WHERE t.id = t1.id ) AS c FROM t1 LEFT JOIN t2 USING (id);
  1022. SELECT t1.id, ( SELECT COUNT(t.id) FROM t2 AS t WHERE t.id = t1.id ) AS c FROM t1 LEFT JOIN t2 USING (id) ORDER BY t1.id;
  1023. DROP TABLE t1,t2;
  1024. #
  1025. # ALL/ANY test
  1026. #
  1027. CREATE TABLE t1 ( a int, b int );
  1028. INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
  1029. SELECT a FROM t1 WHERE a > ANY ( SELECT a FROM t1 WHERE b = 2 );
  1030. SELECT a FROM t1 WHERE a < ANY ( SELECT a FROM t1 WHERE b = 2 );
  1031. SELECT a FROM t1 WHERE a = ANY ( SELECT a FROM t1 WHERE b = 2 );
  1032. SELECT a FROM t1 WHERE a >= ANY ( SELECT a FROM t1 WHERE b = 2 );
  1033. SELECT a FROM t1 WHERE a <= ANY ( SELECT a FROM t1 WHERE b = 2 );
  1034. SELECT a FROM t1 WHERE a <> ANY ( SELECT a FROM t1 WHERE b = 2 );
  1035. SELECT a FROM t1 WHERE a > ALL ( SELECT a FROM t1 WHERE b = 2 );
  1036. SELECT a FROM t1 WHERE a < ALL ( SELECT a FROM t1 WHERE b = 2 );
  1037. SELECT a FROM t1 WHERE a = ALL ( SELECT a FROM t1 WHERE b = 2 );
  1038. SELECT a FROM t1 WHERE a >= ALL ( SELECT a FROM t1 WHERE b = 2 );
  1039. SELECT a FROM t1 WHERE a <= ALL ( SELECT a FROM t1 WHERE b = 2 );
  1040. SELECT a FROM t1 WHERE a <> ALL ( SELECT a FROM t1 WHERE b = 2 );
  1041. # with index
  1042. ALTER TABLE t1 ADD INDEX (a);
  1043. SELECT a FROM t1 WHERE a > ANY ( SELECT a FROM t1 WHERE b = 2 );
  1044. SELECT a FROM t1 WHERE a < ANY ( SELECT a FROM t1 WHERE b = 2 );
  1045. SELECT a FROM t1 WHERE a = ANY ( SELECT a FROM t1 WHERE b = 2 );
  1046. SELECT a FROM t1 WHERE a >= ANY ( SELECT a FROM t1 WHERE b = 2 );
  1047. SELECT a FROM t1 WHERE a <= ANY ( SELECT a FROM t1 WHERE b = 2 );
  1048. SELECT a FROM t1 WHERE a <> ANY ( SELECT a FROM t1 WHERE b = 2 );
  1049. SELECT a FROM t1 WHERE a > ALL ( SELECT a FROM t1 WHERE b = 2 );
  1050. SELECT a FROM t1 WHERE a < ALL ( SELECT a FROM t1 WHERE b = 2 );
  1051. SELECT a FROM t1 WHERE a = ALL ( SELECT a FROM t1 WHERE b = 2 );
  1052. SELECT a FROM t1 WHERE a >= ALL ( SELECT a FROM t1 WHERE b = 2 );
  1053. SELECT a FROM t1 WHERE a <= ALL ( SELECT a FROM t1 WHERE b = 2 );
  1054. SELECT a FROM t1 WHERE a <> ALL ( SELECT a FROM t1 WHERE b = 2 );
  1055. # having clause test
  1056. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 HAVING a = 2);
  1057. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 HAVING a = 2);
  1058. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 HAVING a = 2);
  1059. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 HAVING a = 2);
  1060. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 HAVING a = 2);
  1061. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 HAVING a = 2);
  1062. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 HAVING a = 2);
  1063. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 HAVING a = 2);
  1064. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 HAVING a = 2);
  1065. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 HAVING a = 2);
  1066. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 HAVING a = 2);
  1067. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 HAVING a = 2);
  1068. # union test
  1069. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1070. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1071. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1072. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1073. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1074. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1075. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1076. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1077. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1078. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1079. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1080. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 WHERE b = 2 UNION SELECT a FROM t1 WHERE b = 2);
  1081. # union + having test
  1082. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1083. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1084. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1085. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1086. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1087. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1088. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1089. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1090. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1091. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1092. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1093. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 HAVING a = 2 UNION SELECT a FROM t1 HAVING a = 2);
  1094. # row tests
  1095. # < > >= <= and = ALL/ <> ANY do not support row operation
  1096. -- error 1241
  1097. SELECT a FROM t1 WHERE (1,2) > ANY (SELECT a FROM t1 WHERE b = 2);
  1098. -- error 1241
  1099. SELECT a FROM t1 WHERE a > ANY (SELECT a,2 FROM t1 WHERE b = 2);
  1100. -- error 1241
  1101. SELECT a FROM t1 WHERE (1,2) > ANY (SELECT a,2 FROM t1 WHERE b = 2);
  1102. -- error 1241
  1103. SELECT a FROM t1 WHERE (1,2) > ALL (SELECT a FROM t1 WHERE b = 2);
  1104. -- error 1241
  1105. SELECT a FROM t1 WHERE a > ALL (SELECT a,2 FROM t1 WHERE b = 2);
  1106. -- error 1241
  1107. SELECT a FROM t1 WHERE (1,2) > ALL (SELECT a,2 FROM t1 WHERE b = 2);
  1108. -- error 1241
  1109. SELECT a FROM t1 WHERE (1,2) = ALL (SELECT a,2 FROM t1 WHERE b = 2);
  1110. -- error 1241
  1111. SELECT a FROM t1 WHERE (1,2) <> ANY (SELECT a,2 FROM t1 WHERE b = 2);
  1112. # following should be converted to IN
  1113. -- error 1241
  1114. SELECT a FROM t1 WHERE (1,2) = ANY (SELECT a FROM t1 WHERE b = 2);
  1115. -- error 1241
  1116. SELECT a FROM t1 WHERE a = ANY (SELECT a,2 FROM t1 WHERE b = 2);
  1117. SELECT a FROM t1 WHERE (1,2) = ANY (SELECT a,2 FROM t1 WHERE b = 2);
  1118. -- error 1241
  1119. SELECT a FROM t1 WHERE (1,2) <> ALL (SELECT a FROM t1 WHERE b = 2);
  1120. -- error 1241
  1121. SELECT a FROM t1 WHERE a <> ALL (SELECT a,2 FROM t1 WHERE b = 2);
  1122. SELECT a FROM t1 WHERE (1,2) <> ALL (SELECT a,2 FROM t1 WHERE b = 2);
  1123. SELECT a FROM t1 WHERE (a,1) = ANY (SELECT a,1 FROM t1 WHERE b = 2);
  1124. SELECT a FROM t1 WHERE (a,1) <> ALL (SELECT a,1 FROM t1 WHERE b = 2);
  1125. SELECT a FROM t1 WHERE (a,1) = ANY (SELECT a,1 FROM t1 HAVING a = 2);
  1126. SELECT a FROM t1 WHERE (a,1) <> ALL (SELECT a,1 FROM t1 HAVING a = 2);
  1127. SELECT a FROM t1 WHERE (a,1) = ANY (SELECT a,1 FROM t1 WHERE b = 2 UNION SELECT a,1 FROM t1 WHERE b = 2);
  1128. SELECT a FROM t1 WHERE (a,1) <> ALL (SELECT a,1 FROM t1 WHERE b = 2 UNION SELECT a,1 FROM t1 WHERE b = 2);
  1129. SELECT a FROM t1 WHERE (a,1) = ANY (SELECT a,1 FROM t1 HAVING a = 2 UNION SELECT a,1 FROM t1 HAVING a = 2);
  1130. SELECT a FROM t1 WHERE (a,1) <> ALL (SELECT a,1 FROM t1 HAVING a = 2 UNION SELECT a,1 FROM t1 HAVING a = 2);
  1131. # without optimisation
  1132. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1133. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1134. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1135. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1136. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1137. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 WHERE b = 2 group by a);
  1138. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1139. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1140. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1141. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1142. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1143. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 WHERE b = 2 group by a);
  1144. # without optimisation + having
  1145. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1146. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1147. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1148. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1149. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1150. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 group by a HAVING a = 2);
  1151. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1152. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1153. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1154. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1155. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1156. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 group by a HAVING a = 2);
  1157. # EXISTS in string contence
  1158. SELECT concat(EXISTS(SELECT a FROM t1 WHERE b = 2 and a.a > t1.a), '-') from t1 a;
  1159. SELECT concat(EXISTS(SELECT a FROM t1 WHERE b = 2 and a.a < t1.a), '-') from t1 a;
  1160. SELECT concat(EXISTS(SELECT a FROM t1 WHERE b = 2 and a.a = t1.a), '-') from t1 a;
  1161. DROP TABLE t1;
  1162. CREATE TABLE t1 ( a double, b double );
  1163. INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
  1164. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 WHERE b = 2e0);
  1165. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 WHERE b = 2e0);
  1166. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 WHERE b = 2e0);
  1167. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 WHERE b = 2e0);
  1168. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 WHERE b = 2e0);
  1169. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 WHERE b = 2e0);
  1170. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 WHERE b = 2e0);
  1171. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 WHERE b = 2e0);
  1172. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 WHERE b = 2e0);
  1173. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 WHERE b = 2e0);
  1174. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 WHERE b = 2e0);
  1175. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 WHERE b = 2e0);
  1176. DROP TABLE t1;
  1177. CREATE TABLE t1 ( a char(1), b char(1));
  1178. INSERT INTO t1 VALUES ('1','1'),('2','2'),('3','3');
  1179. SELECT a FROM t1 WHERE a > ANY (SELECT a FROM t1 WHERE b = '2');
  1180. SELECT a FROM t1 WHERE a < ANY (SELECT a FROM t1 WHERE b = '2');
  1181. SELECT a FROM t1 WHERE a = ANY (SELECT a FROM t1 WHERE b = '2');
  1182. SELECT a FROM t1 WHERE a >= ANY (SELECT a FROM t1 WHERE b = '2');
  1183. SELECT a FROM t1 WHERE a <= ANY (SELECT a FROM t1 WHERE b = '2');
  1184. SELECT a FROM t1 WHERE a <> ANY (SELECT a FROM t1 WHERE b = '2');
  1185. SELECT a FROM t1 WHERE a > ALL (SELECT a FROM t1 WHERE b = '2');
  1186. SELECT a FROM t1 WHERE a < ALL (SELECT a FROM t1 WHERE b = '2');
  1187. SELECT a FROM t1 WHERE a = ALL (SELECT a FROM t1 WHERE b = '2');
  1188. SELECT a FROM t1 WHERE a >= ALL (SELECT a FROM t1 WHERE b = '2');
  1189. SELECT a FROM t1 WHERE a <= ALL (SELECT a FROM t1 WHERE b = '2');
  1190. SELECT a FROM t1 WHERE a <> ALL (SELECT a FROM t1 WHERE b = '2');
  1191. DROP TABLE t1;
  1192. #
  1193. # SELECT(EXISTS * ...)optimisation
  1194. #
  1195. create table t1 (a int, b int);
  1196. insert into t1 values (1,2),(3,4);
  1197. select * from t1 up where exists (select * from t1 where t1.a=up.a);
  1198. explain extended select * from t1 up where exists (select * from t1 where t1.a=up.a);
  1199. drop table t1;
  1200. #
  1201. # Bug #4102: subselect in HAVING
  1202. #
  1203. CREATE TABLE t1 (t1_a int);
  1204. INSERT INTO t1 VALUES (1);
  1205. CREATE TABLE t2 (t2_a int, t2_b int, PRIMARY KEY (t2_a, t2_b));
  1206. INSERT INTO t2 VALUES (1, 1), (1, 2);
  1207. SELECT * FROM t1, t2 table2 WHERE t1_a = 1 AND table2.t2_a = 1
  1208.   HAVING table2.t2_b = (SELECT MAX(t2_b) FROM t2 WHERE t2_a = table2.t2_a);
  1209. DROP TABLE t1, t2;
  1210. #
  1211. # Test problem with NULL and derived tables (Bug #4097)
  1212. #
  1213. CREATE TABLE t1 (id int(11) default NULL,name varchar(10) default NULL);
  1214. INSERT INTO t1 VALUES (1,'Tim'),(2,'Rebecca'),(3,NULL);
  1215. CREATE TABLE t2 (id int(11) default NULL, pet varchar(10) default NULL);
  1216. INSERT INTO t2 VALUES (1,'Fido'),(2,'Spot'),(3,'Felix');
  1217. SELECT a.*, b.* FROM (SELECT * FROM t1) AS a JOIN t2 as b on a.id=b.id;
  1218. drop table t1,t2;
  1219. #
  1220. # outer fields resolving in INSERT/REPLACE and CRETE with SELECT
  1221. #
  1222. CREATE TABLE t1 ( a int, b int );
  1223. CREATE TABLE t2 ( c int, d int );
  1224. INSERT INTO t1 VALUES (1,2), (2,3), (3,4);
  1225. SELECT a AS abc, b FROM t1 WHERE b = (SELECT MIN(b) FROM t1 WHERE a=abc);
  1226. INSERT INTO t2 SELECT a AS abc, b FROM t1 WHERE b = (SELECT MIN(b) FROM t1 WHERE a=abc);
  1227. select * from t2;
  1228. CREATE TABLE t3 SELECT a AS abc, b FROM t1 WHERE b = (SELECT MIN(b) FROM t1 WHERE a=abc);
  1229. select * from t3;
  1230. prepare stmt1 from "INSERT INTO t2 SELECT a AS abc, b FROM t1 WHERE b = (SELECT MIN(b) FROM t1 WHERE a=abc);";
  1231. execute stmt1;
  1232. deallocate prepare stmt1;
  1233. select * from t2;
  1234. drop table t3;
  1235. prepare stmt1 from "CREATE TABLE t3 SELECT a AS abc, b FROM t1 WHERE b = (SELECT MIN(b) FROM t1 WHERE a=abc);";
  1236. execute stmt1;
  1237. select * from t3;
  1238. deallocate prepare stmt1;
  1239. DROP TABLE t1, t2, t3;
  1240. #
  1241. # Aggregate function comparation with ALL/ANY/SOME subselect
  1242. #
  1243. CREATE TABLE `t1` ( `a` int(11) default NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  1244. insert into t1 values (1);
  1245. CREATE TABLE `t2` ( `b` int(11) default NULL, `a` int(11) default NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  1246. insert into t2 values (1,2);
  1247. select t000.a, count(*) `C` FROM t1 t000 GROUP BY t000.a HAVING count(*) > ALL (SELECT count(*) FROM t2 t001 WHERE t001.a=1);
  1248. drop table t1,t2;
  1249. #
  1250. # BUG#4769 - fulltext in subselect
  1251. #
  1252. create table t1 (a int not null auto_increment primary key, b varchar(40), fulltext(b)); 
  1253. insert into t1 (b) values ('ball'),('ball games'), ('games'), ('foo'), ('foobar'), ('Serg'), ('Sergei'),('Georg'), ('Patrik'),('Hakan'); 
  1254. create table t2 (a int); 
  1255. insert into t2 values (1),(3),(2),(7); 
  1256. select a,b from t1 where match(b) against ('Ball') > 0; 
  1257. select a from t2 where a in (select a from t1 where match(b) against ('Ball') > 0); 
  1258. drop table t1,t2;
  1259. #
  1260. # BUG#5003 - like in subselect
  1261. #
  1262. CREATE TABLE t1(`IZAVORGANG_ID` VARCHAR(11) CHARACTER SET latin1 COLLATE latin1_bin,`KUERZEL` VARCHAR(10) CHARACTER SET latin1 COLLATE latin1_bin,`IZAANALYSEART_ID` VARCHAR(11) CHARACTER SET latin1 COLLATE latin1_bin,`IZAPMKZ_ID` VARCHAR(11) CHARACTER SET latin1 COLLATE latin1_bin);
  1263. CREATE INDEX AK01IZAVORGANG ON t1(izaAnalyseart_id,Kuerzel);
  1264. INSERT INTO t1(`IZAVORGANG_ID`,`KUERZEL`,`IZAANALYSEART_ID`,`IZAPMKZ_ID`)VALUES('D0000000001','601','D0000000001','I0000000001');
  1265. INSERT INTO t1(`IZAVORGANG_ID`,`KUERZEL`,`IZAANALYSEART_ID`,`IZAPMKZ_ID`)VALUES('D0000000002','602','D0000000001','I0000000001');
  1266. INSERT INTO t1(`IZAVORGANG_ID`,`KUERZEL`,`IZAANALYSEART_ID`,`IZAPMKZ_ID`)VALUES('D0000000003','603','D0000000001','I0000000001');
  1267. INSERT INTO t1(`IZAVORGANG_ID`,`KUERZEL`,`IZAANALYSEART_ID`,`IZAPMKZ_ID`)VALUES('D0000000004','101','D0000000001','I0000000001');
  1268. SELECT `IZAVORGANG_ID` FROM t1 WHERE `KUERZEL` IN(SELECT MIN(`KUERZEL`)`Feld1` FROM t1 WHERE `KUERZEL` LIKE'601%'And`IZAANALYSEART_ID`='D0000000001');
  1269. drop table t1;
  1270. #
  1271. # Optimized IN with compound index
  1272. #
  1273. CREATE TABLE `t1` ( `aid` int(11) NOT NULL default '0', `bid` int(11) NOT NULL default '0', PRIMARY KEY  (`aid`,`bid`));
  1274. CREATE TABLE `t2` ( `aid` int(11) NOT NULL default '0', `bid` int(11) NOT NULL default '0', PRIMARY KEY  (`aid`,`bid`));
  1275. insert into t1 values (1,1),(1,2),(2,1),(2,2);
  1276. insert into t2 values (1,2),(2,2);
  1277. select * from t1 where t1.aid not in (select aid from t2 where bid=t1.bid);
  1278. alter table t2 drop primary key;
  1279. alter table t2 add key KEY1 (aid, bid);
  1280. select * from t1 where t1.aid not in (select aid from t2 where bid=t1.bid);
  1281. alter table t2 drop key KEY1;
  1282. alter table t2 add primary key (bid, aid);
  1283. select * from t1 where t1.aid not in (select aid from t2 where bid=t1.bid);
  1284. drop table t1,t2;
  1285. #
  1286. # resolving fields of grouped outer SELECT
  1287. #
  1288. CREATE TABLE t1 (howmanyvalues bigint, avalue int);
  1289. INSERT INTO t1 VALUES (1, 1),(2, 1),(2, 2),(3, 1),(3, 2),(3, 3),(4, 1),(4, 2),(4, 3),(4, 4);
  1290. SELECT howmanyvalues, count(*) from t1 group by howmanyvalues;
  1291. SELECT a.howmanyvalues, (SELECT count(*) from t1 b where b.howmanyvalues = a.howmanyvalues) as mycount from t1 a group by a.howmanyvalues;
  1292. CREATE INDEX t1_howmanyvalues_idx ON t1 (howmanyvalues);
  1293. SELECT a.howmanyvalues, (SELECT count(*) from t1 b where b.howmanyvalues+1 = a.howmanyvalues+1) as mycount from t1 a group by a.howmanyvalues;
  1294. SELECT a.howmanyvalues, (SELECT count(*) from t1 b where b.howmanyvalues = a.howmanyvalues) as mycount from t1 a group by a.howmanyvalues;
  1295. SELECT a.howmanyvalues, (SELECT count(*) from t1 b where b.howmanyvalues = a.avalue) as mycount from t1 a group by a.howmanyvalues;
  1296. drop table t1;
  1297. create table t1 (x int);
  1298. select  (select b.x from t1 as b where b.x=a.x) from t1 as a where a.x=2 group by a.x;
  1299. drop table t1;
  1300. #
  1301. # Test of correct maybe_null flag returning by subquwery for temporary table
  1302. # creation
  1303. #
  1304. CREATE TABLE `t1` ( `master` int(10) unsigned NOT NULL default '0', `map` smallint(6) unsigned NOT NULL default '0', `slave` int(10) unsigned NOT NULL default '0', `access` int(10) unsigned NOT NULL default '0', UNIQUE KEY `access_u` (`master`,`map`,`slave`));
  1305. INSERT INTO `t1` VALUES (1,0,0,700),(1,1,1,400),(1,5,5,400),(1,12,12,400),(1,12,32,400),(4,12,32,400);
  1306. CREATE TABLE `t2` ( `id` int(10) unsigned NOT NULL default '0', `pid` int(10) unsigned NOT NULL default '0', `map` smallint(6) unsigned NOT NULL default '0', `level` tinyint(4) unsigned NOT NULL default '0', `title` varchar(255) default NULL, PRIMARY KEY  (`id`,`pid`,`map`), KEY `level` (`level`), KEY `id` (`id`,`map`)) ;
  1307. INSERT INTO `t2` VALUES (6,5,12,7,'a'),(12,0,0,7,'a'),(12,1,0,7,'a'),(12,5,5,7,'a'),(12,5,12,7,'a');
  1308. -- error 1054
  1309. SELECT b.sc FROM (SELECT (SELECT a.access FROM t1 a WHERE a.map = op.map AND a.slave = op.pid AND a.master = 1) ac FROM t2 op WHERE op.id = 12 AND op.map = 0) b;
  1310. SELECT b.ac FROM (SELECT (SELECT a.access FROM t1 a WHERE a.map = op.map AND a.slave = op.pid AND a.master = 1) ac FROM t2 op WHERE op.id = 12 AND op.map = 0) b;
  1311. drop tables t1,t2;
  1312. #
  1313. # Test for bug #6462. "Same request on same data returns different
  1314. # results." a.k.a. "Proper cleanup of subqueries is missing for 
  1315. # SET and DO statements".
  1316. #
  1317. create table t1 (a int not null, b int not null, c int, primary key (a,b));
  1318. insert into t1 values (1,1,1), (2,2,2), (3,3,3);
  1319. set @b:= 0;
  1320. # Let us check that subquery will use covering index
  1321. explain select sum(a) from t1 where b > @b;
  1322. # This should not crash -debug server due to failing assertion
  1323. set @a:= (select sum(a) from t1 where b > @b);
  1324. # And this should not falsely report index usage
  1325. explain select a from t1 where c=2;
  1326. # Same for DO statement
  1327. do @a:= (select sum(a) from t1 where b > @b);
  1328. explain select a from t1 where c=2;
  1329. drop table t1;
  1330. #
  1331. # Subselect in non-select command just after connection
  1332. #
  1333. connect (root,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
  1334. connection root;
  1335. set @got_val= (SELECT 1 FROM (SELECT 'A' as my_col) as T1 ) ;
  1336. #
  1337. # primary query with temporary table and subquery with groupping
  1338. #
  1339. create table t1 (a int, b int);
  1340. create table t2 (a int, b int);
  1341. insert into t1 values (1,1),(1,2),(1,3),(2,4),(2,5);
  1342. insert into t2 values (1,3),(2,1);
  1343. select distinct a,b, (select max(b) from t2 where t1.b=t2.a) from t1 order by t1.b;
  1344. drop table t1, t2;
  1345. #
  1346. # subqueries with full text search
  1347. #
  1348. create table t1 (id int);
  1349. create table t2 (id int, body text, fulltext (body));
  1350. insert into t1 values(1),(2),(3);
  1351. insert into t2 values (1,'test'), (2,'mysql'), (3,'test'), (4,'test');
  1352. select count(distinct id) from t1 where id in (select id from t2 where match(body) against ('mysql' in boolean mode));
  1353. drop table t2,t1;
  1354. #
  1355. # Equal operation under row and empty subquery
  1356. #
  1357. create table t1 (s1 int,s2 int);
  1358. insert into t1 values (20,15);
  1359. select * from t1 where  (('a',null) <=> (select 'a',s2 from t1 where s1 = 0));
  1360. drop table t1;
  1361. #
  1362. # ALL/ANY with NULL
  1363. #
  1364. create table t1 (s1 int);
  1365. insert into t1 values (1),(null);
  1366. select * from t1 where s1 < all (select s1 from t1);
  1367. select s1, s1 < all (select s1 from t1) from t1;
  1368. drop table t1;
  1369. #
  1370. # reference on changable fields from subquery
  1371. #
  1372. CREATE TABLE t1 (
  1373.   Code char(3) NOT NULL default '',
  1374.   Name char(52) NOT NULL default '',
  1375.   Continent enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL default 'Asia',
  1376.   Region char(26) NOT NULL default '',
  1377.   SurfaceArea float(10,2) NOT NULL default '0.00',
  1378.   IndepYear smallint(6) default NULL,
  1379.   Population int(11) NOT NULL default '0',
  1380.   LifeExpectancy float(3,1) default NULL,
  1381.   GNP float(10,2) default NULL,
  1382.   GNPOld float(10,2) default NULL,
  1383.   LocalName char(45) NOT NULL default '',
  1384.   GovernmentForm char(45) NOT NULL default '',
  1385.   HeadOfState char(60) default NULL,
  1386.   Capital int(11) default NULL,
  1387.   Code2 char(2) NOT NULL default ''
  1388. ) ENGINE=MyISAM;
  1389. INSERT INTO t1 VALUES ('XXX','Xxxxx','Oceania','Xxxxxx',26.00,0,0,0,0,0,'Xxxxx','Xxxxx','Xxxxx',NULL,'XX');
  1390. INSERT INTO t1 VALUES ('ASM','American Samoa','Oceania','Polynesia',199.00,0,68000,75.1,334.00,NULL,'Amerika Samoa','US Territory','George W. Bush',54,'AS');
  1391. INSERT INTO t1 VALUES ('ATF','French Southern territories','Antarctica','Antarctica',7780.00,0,0,NULL,0.00,NULL,'Terres australes fran鏰ises','Nonmetropolitan Territory of France','Jacques Chirac',NULL,'TF');
  1392. INSERT INTO t1 VALUES ('UMI','United States Minor Outlying Islands','Oceania','Micronesia/Caribbean',16.00,0,0,NULL,0.00,NULL,'United States Minor Outlying Islands','Dependent Territory of the US','George W. Bush',NULL,'UM');
  1393. /*!40000 ALTER TABLE t1 ENABLE KEYS */;
  1394. SELECT DISTINCT Continent AS c FROM t1 WHERE Code <> SOME ( SELECT Code FROM t1 WHERE Continent = c AND Population < 200);
  1395. drop table t1;
  1396. #
  1397. # Test for BUG#7885: Server crash when 'any' subselect compared to
  1398. # non-existant field.
  1399. #
  1400. create table t1 (a1 int);
  1401. create table t2 (b1 int);
  1402. --error 1054
  1403. select * from t1 where a2 > any(select b1 from t2);
  1404. select * from t1 where a1 > any(select b1 from t2);
  1405. drop table t1,t2;
  1406. #
  1407. # Comparison subquery with * and row
  1408. #
  1409. create table t1 (a integer, b integer);
  1410. select (select * from t1) = (select 1,2);
  1411. select (select 1,2) = (select * from t1);
  1412. # queries whih can be converted to IN
  1413. select  row(1,2) = ANY (select * from t1);
  1414. select  row(1,2) != ALL (select * from t1);
  1415. drop table t1;
  1416. #
  1417. # Comparison subquery and row with nested rows
  1418. #
  1419. create table t1 (a integer, b integer);
  1420. -- error 1241
  1421. select row(1,(2,2)) in (select * from t1 );
  1422. -- error 1241
  1423. select row(1,(2,2)) = (select * from t1 );
  1424. -- error 1241
  1425. select (select * from t1) = row(1,(2,2));
  1426. drop table t1;
  1427. #
  1428. # Forward reference detection
  1429. #
  1430. create  table t1 (a integer);
  1431. insert into t1 values (1);
  1432. -- error 1247
  1433. select 1 = ALL (select 1 from t1 where 1 = xx ), 1 as xx ;
  1434. -- error 1247
  1435. select 1 = ALL (select 1 from t1 where 1 = xx ), 1 as xx;
  1436. select 1 as xx, 1 = ALL (  select 1 from t1 where 1 = xx );
  1437. -- error 1247
  1438. select 1 = ALL (select 1 from t1 where 1 = xx ), 1 as xx;
  1439. -- error 1247
  1440. select 1 = ALL (select 1 from t1 where 1 = xx ), 1 as xx from DUAL;
  1441. drop table t1;
  1442. #
  1443. # Test for BUG#8218
  1444. #
  1445. CREATE TABLE t1 (
  1446.   categoryId int(11) NOT NULL,
  1447.   courseId int(11) NOT NULL,
  1448.   startDate datetime NOT NULL,
  1449.   endDate datetime NOT NULL,
  1450.   createDate datetime NOT NULL,
  1451.   modifyDate timestamp NOT NULL,
  1452.   attributes text NOT NULL
  1453. );
  1454. INSERT INTO t1 VALUES (1,41,'2004-02-09','2010-01-01','2004-02-09','2004-02-09',''),
  1455. (1,86,'2004-08-16','2004-08-16','2004-08-16','2004-08-16',''),
  1456. (1,87,'2004-08-16','2004-08-16','2004-08-16','2004-08-16',''),
  1457. (2,52,'2004-03-15','2004-10-01','2004-03-15','2004-09-17',''),
  1458. (2,53,'2004-03-16','2004-10-01','2004-03-16','2004-09-17',''),
  1459. (2,88,'2004-08-16','2004-08-16','2004-08-16','2004-08-16',''),
  1460. (2,89,'2004-08-16','2004-08-16','2004-08-16','2004-08-16',''),
  1461. (3,51,'2004-02-09','2010-01-01','2004-02-09','2004-02-09',''),
  1462. (5,12,'2004-02-18','2010-01-01','2004-02-18','2004-02-18','');
  1463. CREATE TABLE t2 (
  1464.   userId int(11) NOT NULL,
  1465.   courseId int(11) NOT NULL,
  1466.   date datetime NOT NULL
  1467. );
  1468. INSERT INTO t2 VALUES (5141,71,'2003-11-18'),
  1469. (5141,72,'2003-11-25'),(5141,41,'2004-08-06'),
  1470. (5141,52,'2004-08-06'),(5141,53,'2004-08-06'),
  1471. (5141,12,'2004-08-06'),(5141,86,'2004-10-21'),
  1472. (5141,87,'2004-10-21'),(5141,88,'2004-10-21'),
  1473. (5141,89,'2004-10-22'),(5141,51,'2004-10-26');
  1474. CREATE TABLE t3 (
  1475.   groupId int(11) NOT NULL,
  1476.   parentId int(11) NOT NULL,
  1477.   startDate datetime NOT NULL,
  1478.   endDate datetime NOT NULL,
  1479.   createDate datetime NOT NULL,
  1480.   modifyDate timestamp NOT NULL,
  1481.   ordering int(11)
  1482. );
  1483. INSERT INTO t3 VALUES (12,9,'1000-01-01','3999-12-31','2004-01-29','2004-01-29',NULL);
  1484. CREATE TABLE t4 (
  1485.   id int(11) NOT NULL,
  1486.   groupTypeId int(11) NOT NULL,
  1487.   groupKey varchar(50) NOT NULL,
  1488.   name text,
  1489.   ordering int(11),
  1490.   description text,
  1491.   createDate datetime NOT NULL,
  1492.   modifyDate timestamp NOT NULL
  1493. );
  1494. INSERT INTO t4 VALUES (9,5,'stationer','stationer',0,'Stationer','2004-01-29','2004-01-29'),
  1495. (12,5,'group2','group2',0,'group2','2004-01-29','2004-01-29');
  1496. CREATE TABLE t5 (
  1497.   userId int(11) NOT NULL,
  1498.   groupId int(11) NOT NULL,
  1499.   createDate datetime NOT NULL,
  1500.   modifyDate timestamp NOT NULL
  1501. );
  1502. INSERT INTO t5 VALUES (5141,12,'2004-08-06','2004-08-06');
  1503. select
  1504.   count(distinct t2.userid) pass,
  1505.   groupstuff.*,
  1506.   count(t2.courseid) crse,
  1507.   t1.categoryid, 
  1508.   t2.courseid,
  1509.   date_format(date, '%b%y') as colhead
  1510. from t2   
  1511. join t1 on t2.courseid=t1.courseid  
  1512. join
  1513. (
  1514.   select 
  1515.     t5.userid,  
  1516.     parentid,  
  1517.     parentgroup,  
  1518.     childid,  
  1519.     groupname,  
  1520.     grouptypeid  
  1521.   from t5 
  1522.   join 
  1523.   (
  1524.      select t4.id as parentid,  
  1525.        t4.name as parentgroup,  
  1526.        t4.id as childid,  
  1527.        t4.name as groupname,  
  1528.        t4.grouptypeid  
  1529.      from   t4  
  1530.   ) as gin on t5.groupid=gin.childid 
  1531. ) as groupstuff on t2.userid = groupstuff.userid 
  1532. group by 
  1533.   groupstuff.groupname, colhead , t2.courseid;
  1534. drop table t1, t2, t3, t4, t5;
  1535. #
  1536. # Transformation in left expression of subquery (BUG#8888)
  1537. #
  1538. create table t1 (a int);
  1539. insert into t1 values (1), (2), (3);
  1540. SELECT 1 FROM t1 WHERE (SELECT 1) in (SELECT 1);
  1541. drop table t1;
  1542. #
  1543. # subselect into HAVING clause (code covarage improvement)
  1544. #
  1545. create table t1 (a int);
  1546. create table t2 (a int);
  1547. insert into t1 values (1),(2);
  1548. insert into t2 values (0),(1),(2),(3);
  1549. select a from t2 where a in (select a from t1);
  1550. select a from t2 having a in (select a from t1);
  1551. prepare stmt1 from "select a from t2 where a in (select a from t1)";
  1552. execute stmt1;
  1553. execute stmt1;
  1554. deallocate prepare stmt1;
  1555. prepare stmt1 from "select a from t2 having a in (select a from t1)";
  1556. execute stmt1;
  1557. execute stmt1;
  1558. deallocate prepare stmt1;
  1559. drop table t1, t2;
  1560. #
  1561. # single row subqueries and row operations (code covarage improvement)
  1562. #
  1563. create table t1 (a int, b int);
  1564. insert into t1 values (1,2);
  1565. -- error 1241
  1566. select 1 = (select * from t1);
  1567. -- error 1241
  1568. select (select * from t1) = 1;
  1569. -- error 1241
  1570. select (1,2) = (select a from t1);
  1571. -- error 1241
  1572. select (select a from t1) = (1,2);
  1573. -- error 1241
  1574. select (1,2,3) = (select * from t1);
  1575. -- error 1241
  1576. select (select * from t1) = (1,2,3);
  1577. drop table t1
  1578. #
  1579. # Item_int_with_ref check (BUG#10020)
  1580. #
  1581. CREATE TABLE `t1` (
  1582.   `itemid` bigint(20) unsigned NOT NULL auto_increment,
  1583.   `sessionid` bigint(20) unsigned default NULL,
  1584.   `time` int(10) unsigned NOT NULL default '0',
  1585.   `type` set('A','D','E','F','G','I','L','N','U') collate latin1_general_ci NOT
  1586. NULL default '',
  1587.   `data` text collate latin1_general_ci NOT NULL,
  1588.   PRIMARY KEY  (`itemid`)
  1589. ) DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  1590. INSERT INTO `t1` VALUES (1, 1, 1, 'D', '');
  1591. CREATE TABLE `t2` (
  1592.   `sessionid` bigint(20) unsigned NOT NULL auto_increment,
  1593.   `pid` int(10) unsigned NOT NULL default '0',
  1594.   `date` int(10) unsigned NOT NULL default '0',
  1595.   `ip` varchar(15) collate latin1_general_ci NOT NULL default '',
  1596.   PRIMARY KEY  (`sessionid`)
  1597. ) DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  1598. INSERT INTO `t2` VALUES (1, 1, 1, '10.10.10.1');
  1599. SELECT s.ip, count( e.itemid ) FROM `t1` e JOIN t2 s ON s.sessionid = e.sessionid WHERE e.sessionid = ( SELECT sessionid FROM t2 ORDER BY sessionid DESC LIMIT 1 ) GROUP BY s.ip HAVING count( e.itemid ) >0 LIMIT 0 , 30;
  1600. drop tables t1,t2;
  1601. # BUG#11821 : Select from subselect using aggregate function on an enum
  1602. # segfaults:
  1603. create table t1 (fld enum('0','1'));
  1604. insert into t1 values ('1');
  1605. select * from (select max(fld) from t1) as foo;
  1606. drop table t1;
  1607. #
  1608. # Bug #11867: queries with ROW(,elems>) IN (SELECT DISTINCT <cols> FROM ...)
  1609. #
  1610. CREATE TABLE t1 (one int, two int, flag char(1));
  1611. CREATE TABLE t2 (one int, two int, flag char(1));
  1612. INSERT INTO t1 VALUES(1,2,'Y'),(2,3,'Y'),(3,4,'Y'),(5,6,'N'),(7,8,'N');
  1613. INSERT INTO t2 VALUES(1,2,'Y'),(2,3,'Y'),(3,4,'Y'),(5,6,'N'),(7,8,'N');
  1614. SELECT * FROM t1
  1615.   WHERE ROW(one,two) IN (SELECT DISTINCT one,two FROM t2 WHERE flag = 'N');
  1616. SELECT * FROM t1
  1617.   WHERE ROW(one,two) IN (SELECT DISTINCT one,two FROM t1 WHERE flag = 'N');
  1618. insert into t2 values (null,null,'N');
  1619. insert into t2 values (null,3,'0');
  1620. insert into t2 values (null,5,'0');
  1621. insert into t2 values (10,null,'0');
  1622. insert into t1 values (10,3,'0');
  1623. insert into t1 values (10,5,'0');
  1624. insert into t1 values (10,10,'0');
  1625. SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = 'N') as 'test' from t1;
  1626. SELECT one,two from t1 where ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = 'N');
  1627. SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = 'N' group by one,two) as 'test' from t1;
  1628. SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = '0') as 'test' from t1;
  1629. SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = '0' group by one,two) as 'test' from t1;
  1630. explain extended SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = '0') as 'test' from t1;
  1631. explain extended SELECT one,two from t1 where ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = 'N');
  1632. explain extended SELECT one,two,ROW(one,two) IN (SELECT one,two FROM t2 WHERE flag = '0' group by one,two) as 'test' from t1;
  1633. DROP TABLE t1,t2;
  1634. #
  1635. # Bug #12392: where cond with IN predicate for rows and NULL values in table 
  1636. #
  1637. CREATE TABLE t1 (a char(5), b char(5));
  1638. INSERT INTO t1 VALUES (NULL,'aaa'), ('aaa','aaa');
  1639. SELECT * FROM t1 WHERE (a,b) IN (('aaa','aaa'), ('aaa','bbb'));
  1640. DROP TABLE t1;
  1641. #
  1642. # Bug #11479: subquery over left join with an empty inner table 
  1643. #
  1644. CREATE TABLE t1 (a int);
  1645. CREATE TABLE t2 (a int, b int);
  1646. CREATE TABLE t3 (b int NOT NULL);
  1647. INSERT INTO t1 VALUES (1), (2), (3), (4);
  1648. INSERT INTO t2 VALUES (1,10), (3,30);
  1649. SELECT * FROM t2 LEFT JOIN t3 ON t2.b=t3.b
  1650.   WHERE t3.b IS NOT NULL OR t2.a > 10;
  1651. SELECT * FROM t1
  1652.   WHERE t1.a NOT IN (SELECT a FROM t2 LEFT JOIN t3 ON t2.b=t3.b
  1653.                        WHERE t3.b IS NOT NULL OR t2.a > 10);
  1654. DROP TABLE t1,t2,t3;
  1655. #
  1656. # BUG #10308: purge log with subselect
  1657. #
  1658. purge master logs before (select adddate(current_timestamp(), interval -4 day));
  1659. # End of 4.1 tests