subselect.test 42.7 KB
Newer Older
1 2 3 4 5
# Initialise
--disable_warnings
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t11,t12;
--enable_warnings

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
6
select (select 2);
7
explain extended select (select 2);
8
SELECT (SELECT 1) UNION SELECT (SELECT 2);
9
explain extended SELECT (SELECT 1) UNION SELECT (SELECT 2);
10
SELECT (SELECT (SELECT 0 UNION SELECT 0));
11
explain extended SELECT (SELECT (SELECT 0 UNION SELECT 0));
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
12
-- error 1246
13
SELECT (SELECT 1 FROM (SELECT 1) as b HAVING a=1) as a;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
14
-- error 1246
15 16
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;
SELECT (SELECT 1),MAX(1) FROM (SELECT 1) as a;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
17
-- error 1246
18
SELECT (SELECT a) as a;
19
EXPLAIN EXTENDED SELECT 1 FROM (SELECT 1 as a) as b  HAVING (SELECT a)=1;
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
20
SELECT 1 FROM (SELECT 1 as a) as b HAVING (SELECT a)=1;
21 22
-- error 1054
SELECT (SELECT 1), a;
23
SELECT 1 as a FROM (SELECT 1) as b HAVING (SELECT a)=1;
24
-- error 1054
25
SELECT 1 FROM (SELECT (SELECT a) b) c;
26
SELECT * FROM (SELECT 1 as id) b WHERE id IN (SELECT * FROM (SELECT 1 as id) c ORDER BY id);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
27
-- error 1240
28
SELECT * FROM (SELECT 1) a  WHERE 1 IN (SELECT 1,1);
29
SELECT 1 IN (SELECT 1);
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
30
SELECT 1 FROM (SELECT 1 as a) b WHERE 1 IN (SELECT (SELECT a));
31 32 33 34
-- error 1221
select (SELECT 1 FROM (SELECT 1) a PROCEDURE ANALYSE(1));
-- error 1108
SELECT 1 FROM (SELECT 1) a PROCEDURE ANALYSE((SELECT 1));
35 36
SELECT (SELECT 1) as a FROM (SELECT 1) b WHERE (SELECT a) IS NULL;
SELECT (SELECT 1) as a FROM (SELECT 1) b WHERE (SELECT a) IS NOT NULL;
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
SELECT (SELECT 1,2,3) = ROW(1,2,3);
SELECT (SELECT 1,2,3) = ROW(1,2,1);
SELECT (SELECT 1,2,3) < ROW(1,2,1);
SELECT (SELECT 1,2,3) > ROW(1,2,1);
SELECT (SELECT 1,2,3) = ROW(1,2,NULL);
SELECT ROW(1,2,3) = (SELECT 1,2,3);
SELECT ROW(1,2,3) = (SELECT 1,2,1);
SELECT ROW(1,2,3) < (SELECT 1,2,1);
SELECT ROW(1,2,3) > (SELECT 1,2,1);
SELECT ROW(1,2,3) = (SELECT 1,2,NULL);
SELECT (SELECT 1.5,2,'a') = ROW(1.5,2,'a');
SELECT (SELECT 1.5,2,'a') = ROW(1.5,2,'b');
SELECT (SELECT 1.5,2,'a') = ROW('b',2,'b');
SELECT (SELECT 'b',2,'a') = ROW(1.5,2,'a');
SELECT (SELECT 1.5,2,'a') = ROW(1.5,'c','a');
SELECT (SELECT 1.5,'c','a') = ROW(1.5,2,'a');
53

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
54
-- error 1240
55 56
SELECT (SELECT * FROM (SELECT 'test' a,'test' b) a);

57 58
SELECT 1 as a,(SELECT a+a) b,(SELECT b);

59 60 61
create table t1 (a int);
create table t2 (a int, b int);
create table t3 (a int);
62
create table t4 (a int not null, b int not null);
63 64 65
insert into t1 values (2);
insert into t2 values (1,7),(2,7);
insert into t4 values (4,8),(3,8),(5,9);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
66
-- error 1246
67
select (select a from t1 where t1.a = a1) as a2, (select b from t2 where t2.b=a2) as a1;
68 69
select (select a from t1 where t1.a=t2.a), a from t2;
select (select a from t1 where t1.a=t2.b), a from t2;
70
select (select a from t1), a, (select 1 union select 2 limit 1) from t2;
71 72 73
select (select a from t3), a from t2;
select * from t2 where t2.a=(select a from t1);
insert into t3 values (6),(7),(3);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
74
select * from t2 where t2.b=(select a from t3 order by 1 desc limit 1);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
75 76
(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;
(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);
77
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);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
78 79 80
select (select a from t3 where a<t2.a*4 order by 1 desc limit 1), a from t2;
select (select t3.a from t3 where a<8 order by 1 desc limit 1), a from 
(select * from t2 where a>1) as tt;
81
explain extended select (select t3.a from t3 where a<8 order by 1 desc limit 1), a from 
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
82
(select * from t2 where a>1) as tt;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
83 84 85 86
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);
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);
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);
select b,(select avg(t2.a+(select min(t3.a) from t3 where t3.a >= t4.a)) from t2) from t4;
87
explain extended select b,(select avg(t2.a+(select min(t3.a) from t3 where t3.a >= t4.a)) from t2) from t4;
88 89
select * from t3 where exists (select * from t2 where t2.b=t3.a);
select * from t3 where not exists (select * from t2 where t2.b=t3.a);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
90 91
select * from t3 where a in (select b from t2);
select * from t3 where a not in (select b from t2);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
92 93
select * from t3 where a = some (select b from t2);
select * from t3 where a <> any (select b from t2);
94 95

# Rewrite: select * from t3 where not exists (select b from t2 where a <> b);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
96
select * from t3 where a = all (select b from t2);
97

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
98 99 100 101 102
select * from t3 where a <> all (select b from t2);
insert into t2 values (100, 5);
select * from t3 where a < any (select b from t2);
select * from t3 where a < all (select b from t2);
select * from t3 where a >= any (select b from t2);
103
explain extended select * from t3 where a >= any (select b from t2);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
104 105
select * from t3 where a >= all (select b from t2);
delete from t2 where a=100;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
106
-- error 1240
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
107
select * from t3 where a in (select a,b from t2);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
108
-- error 1240
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
109
select * from t3 where a in (select * from t2);
110 111 112 113 114 115 116
insert into t4 values (12,7),(1,7),(10,9),(9,6),(7,6),(3,9),(1,10);
-- empty set
select b,max(a) as ma from t4 group by b having b < (select max(t2.a) from t2 where t2.b=t4.b);
insert into t2 values (2,10);
select b,max(a) as ma from t4 group by b having ma < (select max(t2.a) from t2 where t2.b=t4.b);
delete from t2 where a=2 and b=10;
select b,max(a) as ma from t4 group by b having b >= (select max(t2.a) from t2 where t2.b=t4.b);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
117 118 119 120 121 122
create table t5 (a int);
select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
insert into t5 values (5);
select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
insert into t5 values (2);
select (select a from t1 where t1.a=t2.a union select a from t5 where t5.a=t2.a), a from t2;
123
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;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
124
-- error 1241
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
125
select (select a from t1 where t1.a=t2.a union all select a from t5 where t5.a=t2.a), a from t2;
126 127 128 129 130
create table t6 (patient_uq int, clinic_uq int, index i1 (clinic_uq));
create table t7( uq int primary key, name char(25));
insert into t7 values(1,"Oblastnaia bolnitsa"),(2,"Bolnitsa Krasnogo Kresta");
insert into t6 values (1,1),(1,2),(2,2),(1,3);
select * from t6 where exists (select * from t7 where uq = clinic_uq);
131
explain extended select * from t6 where exists (select * from t7 where uq = clinic_uq);
132

133 134 135 136
# not unique fields
-- error 1052
select * from t1 where a= (select a from t2,t4 where t2.b=t4.b);

137 138 139 140 141 142 143 144 145 146 147 148 149
# different tipes & group functions
drop table if exists t1,t2,t3;

CREATE TABLE t3 (a varchar(20),b char(1) NOT NULL default '0');
INSERT INTO t3 VALUES ('W','a'),('A','c'),('J','b');
CREATE TABLE t2 (a varchar(20),b int NOT NULL default '0');
INSERT INTO t2 VALUES ('W','1'),('A','3'),('J','2');
CREATE TABLE t1 (a varchar(20),b date NOT NULL default '0000-00-00');
INSERT INTO t1 VALUES ('W','1732-02-22'),('A','1735-10-30'),('J','1743-04-13');
SELECT * FROM t1 WHERE b = (SELECT MIN(b) FROM t1);
SELECT * FROM t2 WHERE b = (SELECT MIN(b) FROM t2);
SELECT * FROM t3 WHERE b = (SELECT MIN(b) FROM t3);

150
CREATE TABLE `t8` (
151 152 153 154
  `pseudo` varchar(35) character set latin1 NOT NULL default '',
  `email` varchar(60) character set latin1 NOT NULL default '',
  PRIMARY KEY  (`pseudo`),
  UNIQUE KEY `email` (`email`)
155
) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
156

157 158 159
INSERT INTO t8 (pseudo,email) VALUES ('joce','test');
INSERT INTO t8 (pseudo,email) VALUES ('joce1','test1');
INSERT INTO t8 (pseudo,email) VALUES ('2joce1','2test1');
160
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');
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
161
-- error 1240
162 163
SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo,email FROM
t8 WHERE pseudo='joce');
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
164
-- error 1240
165
SELECT pseudo FROM t8 WHERE pseudo=(SELECT * FROM t8 WHERE
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
166
pseudo='joce');
167
SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo='joce');
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
168
-- error 1241
169
SELECT pseudo FROM t8 WHERE pseudo=(SELECT pseudo FROM t8 WHERE pseudo LIKE '%joce%');
170

171
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8;
172

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
173
#searchconthardwarefr3 forumconthardwarefr7
174
CREATE TABLE `t1` (
175 176 177 178 179
  `topic` mediumint(8) unsigned NOT NULL default '0',
  `date` date NOT NULL default '0000-00-00',
  `pseudo` varchar(35) character set latin1 NOT NULL default '',
  PRIMARY KEY  (`pseudo`,`date`,`topic`),
  KEY `topic` (`topic`)
180
) ENGINE=MyISAM ROW_FORMAT=DYNAMIC;
181
INSERT INTO t1 (topic,date,pseudo) VALUES
182
('43506','2002-10-02','joce'),('40143','2002-08-03','joce');
183 184
EXPLAIN EXTENDED SELECT DISTINCT date FROM t1 WHERE date='2002-08-03';
EXPLAIN EXTENDED SELECT (SELECT DISTINCT date FROM t1 WHERE date='2002-08-03');
185 186 187
SELECT DISTINCT date FROM t1 WHERE date='2002-08-03';
SELECT (SELECT DISTINCT date FROM t1 WHERE date='2002-08-03');
SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION SELECT 1) UNION ALL SELECT 1;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
188
-- error 1241
189
SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION ALL SELECT 1) UNION SELECT 1;
190
EXPLAIN EXTENDED SELECT 1 FROM t1 WHERE 1=(SELECT 1 UNION SELECT 1);
191
drop table t1;
192

193 194
#forumconthardwarefr7 searchconthardwarefr7
CREATE TABLE `t1` (
195 196 197 198
  `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  `maxnumrep` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`numeropost`),
  UNIQUE KEY `maxnumrep` (`maxnumrep`)
199
) ENGINE=MyISAM ROW_FORMAT=FIXED;
200

201
INSERT INTO t1 (numeropost,maxnumrep) VALUES (40143,1),(43506,2);
202

203
CREATE TABLE `t2` (
204 205 206 207 208
      `mot` varchar(30) NOT NULL default '',
      `topic` mediumint(8) unsigned NOT NULL default '0',
      `date` date NOT NULL default '0000-00-00',
      `pseudo` varchar(35) NOT NULL default '',
       PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`)
209
    ) ENGINE=MyISAM ROW_FORMAT=DYNAMIC;
210

211 212 213
INSERT INTO t2 (mot,topic,date,pseudo) VALUES ('joce','40143','2002-10-22','joce'), ('joce','43506','2002-10-22','joce');
select numeropost as a FROM t1 GROUP BY (SELECT 1 FROM t1 HAVING a=1);
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;
214
-- error 1054
215
SELECT (SELECT 1) as a FROM (SELECT 1 FROM t1 HAVING a=1) b;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
216 217
-- error 1054
SELECT 1 IN (SELECT 1 FROM t2 HAVING a);
218 219 220

SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic);
SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
221
SELECT * from t2 where topic IN (SELECT SUM(topic) FROM t1);
222 223
SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic);
SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
224
SELECT * from t2 where topic = any (SELECT SUM(topic) FROM t1);
225 226 227
SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic);
SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100);
SELECT *, topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 4100) from t2;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
228 229
SELECT * from t2 where topic = all (SELECT SUM(topic) FROM t2);
SELECT * from t2 where topic <> any (SELECT SUM(topic) FROM t2);
230 231 232 233
SELECT * from t2 where topic IN (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
SELECT * from t2 where topic = any (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
SELECT * from t2 where topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000);
SELECT *, topic = all (SELECT topic FROM t2 GROUP BY topic HAVING topic < 41000) from t2;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
234
drop table t1,t2;
235

236 237
#forumconthardwarefr7
CREATE TABLE `t1` (
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
238 239 240 241
  `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  `maxnumrep` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`numeropost`),
  UNIQUE KEY `maxnumrep` (`maxnumrep`)
242
) ENGINE=MyISAM ROW_FORMAT=FIXED;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
243

244
INSERT INTO t1 (numeropost,maxnumrep) VALUES (1,0),(2,1);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
245
-- error 1241
246
select numeropost as a FROM t1 GROUP BY (SELECT 1 FROM t1 HAVING a=1);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
247
-- error 1241
248 249
select numeropost as a FROM t1 ORDER BY (SELECT 1 FROM t1 HAVING a=1);
drop table t1;
250

251 252 253 254 255
create table t1 (a int);
insert into t1 values (1),(2),(3);
(select * from t1) union (select * from t1) order by (select a from t1 limit 1);
drop table t1;

256 257 258
#iftest
CREATE TABLE t1 (field char(1) NOT NULL DEFAULT 'b');
INSERT INTO t1 VALUES ();
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
259
-- error 1241
260
SELECT field FROM t1 WHERE 1=(SELECT 1 UNION ALL SELECT 1 FROM (SELECT 1) a HAVING field='b');
261
drop table t1;
262

263 264
# threadhardwarefr7
CREATE TABLE `t1` (
265 266 267 268 269 270
  `numeropost` mediumint(8) unsigned NOT NULL default '0',
  `numreponse` int(10) unsigned NOT NULL auto_increment,
  `pseudo` varchar(35) NOT NULL default '',
  PRIMARY KEY  (`numeropost`,`numreponse`),
  UNIQUE KEY `numreponse` (`numreponse`),
  KEY `pseudo` (`pseudo`,`numeropost`)
271
) ENGINE=MyISAM;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
272
-- error 1246
273
SELECT (SELECT numeropost FROM t1 HAVING numreponse=a),numreponse FROM (SELECT * FROM t1) as a;
274
-- error 1054
275 276 277
SELECT numreponse, (SELECT numeropost FROM t1 HAVING numreponse=a) FROM (SELECT * FROM t1) as a;
SELECT numreponse, (SELECT numeropost FROM t1 HAVING numreponse=1) FROM (SELECT * FROM t1) as a;
INSERT INTO t1 (numeropost,numreponse,pseudo) VALUES (1,1,'joce'),(1,2,'joce'),(1,3,'test');
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
278
-- error 1241
279 280 281
EXPLAIN EXTENDED SELECT numreponse FROM t1 WHERE numeropost='1' AND numreponse=(SELECT 1 FROM t1 WHERE numeropost='1');
EXPLAIN EXTENDED SELECT MAX(numreponse) FROM t1 WHERE numeropost='1';
EXPLAIN EXTENDED SELECT numreponse FROM t1 WHERE numeropost='1' AND numreponse=(SELECT MAX(numreponse) FROM t1 WHERE numeropost='1');
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
282
drop table t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
283

284 285
CREATE TABLE t1 (a int(1));
INSERT INTO t1 VALUES (1);
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
286
SELECT 1 FROM (SELECT a FROM t1) b HAVING (SELECT b.a)=1;
bell@sanja.is.com.ua's avatar
Merge  
bell@sanja.is.com.ua committed
287
drop table t1;
288 289 290 291 292 293 294

#update with subselects
create table t1 (a int NOT NULL, b int, primary key (a));
create table t2 (a int NOT NULL, b int, primary key (a));
insert into t1 values (0, 10),(1, 11),(2, 12);
insert into t2 values (1, 21),(2, 22),(3, 23);
select * from t1;
295 296
-- error 1093
update t1 set b= (select b from t1);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
297
-- error 1241
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
298
update t1 set b= (select b from t2);
299 300 301 302
update t1 set b= (select b from t2 where t1.a = t2.a);
select * from t1;
drop table t1, t2;

303 304 305 306 307 308 309
#delete with subselects
create table t1 (a int NOT NULL, b int, primary key (a));
create table t2 (a int NOT NULL, b int, primary key (a));
insert into t1 values (0, 10),(1, 11),(2, 12);
insert into t2 values (1, 21),(2, 12),(3, 23);
select * from t1;
select * from t1 where b = (select b from t2 where t1.a = t2.a);
310 311
-- error 1093
delete from t1 where b = (select b from t1);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
312
-- error 1241
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
313
delete from t1 where b = (select b from t2);
314 315 316
delete from t1 where b = (select b from t2 where t1.a = t2.a);
select * from t1;
drop table t1, t2;
317

318
#multi-delete with subselects
319

320 321 322 323 324 325 326 327
create table t11 (a int NOT NULL, b int, primary key (a));
create table t12 (a int NOT NULL, b int, primary key (a));
create table t2 (a int NOT NULL, b int, primary key (a));
insert into t11 values (0, 10),(1, 11),(2, 12);
insert into t12 values (33, 10),(22, 11),(2, 12);
insert into t2 values (1, 21),(2, 12),(3, 23);
select * from t11;
select * from t12;
328 329
-- error 1093
delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t12 where t11.a = t12.a);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
330
-- error 1241
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
331
delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t2);
332 333 334 335 336
delete t11.*, t12.* from t11,t12 where t11.a = t12.a and t11.b = (select b from t2 where t11.a = t2.a);
select * from t11;
select * from t12;
drop table t11, t12, t2;

337 338 339
#insert with subselects
CREATE TABLE t1 (x int);
create table t2 (a int);
340
create table t3 (b int);
341
insert into t2 values (1);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
342
insert into t3 values (1),(2);
343 344
-- error 1093
INSERT INTO t1 (x) VALUES ((SELECT x FROM t1));
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
345
-- error 1241
346
INSERT INTO t1 (x) VALUES ((SELECT b FROM t3));
347 348 349 350 351 352 353 354 355
INSERT INTO t1 (x) VALUES ((SELECT a FROM t2));
select * from t1;
insert into t2 values (1);
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
-- sleep 1
select * from t1;
INSERT INTO t1 (x) select (SELECT SUM(a)+1 FROM t2) FROM t2;
select * from t1;
INSERT INTO t1 (x) select (SELECT SUM(x)+2 FROM t1) FROM t2;
356
-- error 1054
357
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(x) FROM t2));
358
INSERT DELAYED INTO t1 (x) VALUES ((SELECT SUM(a) FROM t2));
359 360
-- sleep 1
select * from t1;
361 362 363 364
#
#TODO: should be uncommented after bug 380 fix pushed
#INSERT INTO t1 (x) SELECT (SELECT SUM(a)+b FROM t2) from t3;
#select * from t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
365
drop table t1, t2, t3;
366 367 368 369

#replace with subselects
CREATE TABLE t1 (x int not null, y int, primary key (x));
create table t2 (a int);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
370
create table t3 (a int);
371
insert into t2 values (1);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
372
insert into t3 values (1),(2);
373
select * from t1;
374 375
-- error 1093
replace into t1 (x, y) VALUES ((SELECT x FROM t1), (SELECT a+1 FROM t2));
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
376
-- error 1241
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
377
replace into t1 (x, y) VALUES ((SELECT a FROM t3), (SELECT a+1 FROM t2));
378 379 380 381 382 383 384 385 386 387 388 389
replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+1 FROM t2));
select * from t1;
replace into t1 (x, y) VALUES ((SELECT a FROM t2), (SELECT a+2 FROM t2));
select * from t1;
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a FROM t2));
-- sleep 1
select * from t1;
replace DELAYED into t1 (x, y) VALUES ((SELECT a+3 FROM t2), (SELECT a+1 FROM t2));
-- sleep 1
select * from t1;
replace LOW_PRIORITY into t1 (x, y) VALUES ((SELECT a+1 FROM t2), (SELECT a FROM t2));
select * from t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
390
drop table t1, t2, t3;
391 392

-- error 1096
393
SELECT * FROM (SELECT 1) b WHERE 1 IN (SELECT *);
394

395
CREATE TABLE t2 (id int(11) default NULL, KEY id (id)) ENGINE=MyISAM CHARSET=latin1;
396 397
INSERT INTO t2 VALUES (1),(2);
SELECT * FROM t2 WHERE id IN (SELECT 1);
398
EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1);
399 400
SELECT * FROM t2 WHERE id IN (SELECT 1 UNION SELECT 3);
SELECT * FROM t2 WHERE id IN (SELECT 1+(select 1));
401 402
EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1+(select 1));
EXPLAIN EXTENDED SELECT * FROM t2 WHERE id IN (SELECT 1 UNION SELECT 3);
403 404
SELECT * FROM t2 WHERE id IN (SELECT 5 UNION SELECT 3);
SELECT * FROM t2 WHERE id IN (SELECT 5 UNION SELECT 2);
405
-- error 1093
406
INSERT INTO t2 VALUES ((SELECT * FROM t2));
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
407 408
-- error 1093
INSERT INTO t2 VALUES ((SELECT id FROM t2));
409
SELECT * FROM t2;
410
CREATE TABLE t1 (id int(11) default NULL, KEY id (id)) ENGINE=MyISAM CHARSET=latin1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
411
INSERT INTO t1 values (1),(1);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
412
-- error 1241
413 414
UPDATE t2 SET id=(SELECT * FROM t1);
drop table t2, t1;
415 416

#NULL test
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
create table t1 (a int);
insert into t1 values (1),(2),(3);
select 1 IN (SELECT * from t1);
select 10 IN (SELECT * from t1);
select NULL IN (SELECT * from t1);
update t1 set a=NULL where a=2;
select 1 IN (SELECT * from t1);
select 3 IN (SELECT * from t1);
select 10 IN (SELECT * from t1);
select 1 > ALL (SELECT * from t1);
select 10 > ALL (SELECT * from t1);
select 1 > ANY (SELECT * from t1);
select 10 > ANY (SELECT * from t1);
drop table t1;
create table t1 (a varchar(20));
insert into t1 values ('A'),('BC'),('DEF');
select 'A' IN (SELECT * from t1);
select 'XYZS' IN (SELECT * from t1);
select NULL IN (SELECT * from t1);
update t1 set a=NULL where a='BC';
select 'A' IN (SELECT * from t1);
select 'DEF' IN (SELECT * from t1);
select 'XYZS' IN (SELECT * from t1);
select 'A' > ALL (SELECT * from t1);
select 'XYZS' > ALL (SELECT * from t1);
select 'A' > ANY (SELECT * from t1);
select 'XYZS' > ANY (SELECT * from t1);
drop table t1;
create table t1 (a float);
insert into t1 values (1.5),(2.5),(3.5);
select 1.5 IN (SELECT * from t1);
select 10.5 IN (SELECT * from t1);
select NULL IN (SELECT * from t1);
update t1 set a=NULL where a=2.5;
select 1.5 IN (SELECT * from t1);
select 3.5 IN (SELECT * from t1);
select 10.5 IN (SELECT * from t1);
select 1.5 > ALL (SELECT * from t1);
select 10.5 > ALL (SELECT * from t1);
select 1.5 > ANY (SELECT * from t1);
select 10.5 > ANY (SELECT * from t1);
458
explain extended select (select a+1) from t1;
459 460 461 462 463 464 465 466 467 468 469 470
select (select a+1) from t1;
drop table t1;

#
# Null with keys
#

CREATE TABLE t1 (a int(11) NOT NULL default '0', PRIMARY KEY  (a));
CREATE TABLE t2 (a int(11) default '0', INDEX (a));
INSERT INTO t1 VALUES (1),(2),(3),(4);
INSERT INTO t2 VALUES (1),(2),(3);
SELECT t1.a, t1.a in (select t2.a from t2) FROM t1;
471
explain extended SELECT t1.a, t1.a in (select t2.a from t2) FROM t1;
472 473 474
CREATE TABLE t3 (a int(11) default '0');
INSERT INTO t3 VALUES (1),(2),(3);
SELECT t1.a, t1.a in (select t2.a from t2,t3 where t3.a=t2.a) FROM t1;
475
explain extended SELECT t1.a, t1.a in (select t2.a from t2,t3 where t3.a=t2.a) FROM t1;
476
drop table t1,t2,t3;
477 478

#LIMIT is not supported now
479
create table t1 (a float);
480
-- error 1235
481
select 10.5 IN (SELECT * from t1 LIMIT 1);
482
-- error 1235
483 484
select 10.5 IN (SELECT * from t1 LIMIT 1 UNION SELECT 1.5);
drop table t1;
485

486 487 488 489 490 491 492 493
create table t1 (a int, b int, c varchar(10));
create table t2 (a int);
insert into t1 values (1,2,'a'),(2,3,'b'),(3,4,'c');
insert into t2 values (1),(2),(NULL);
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;
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;
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;
drop table t1,t2;
494

495 496 497 498 499 500 501 502 503 504 505
create table t1 (a int, b real, c varchar(10));
insert into t1 values (1, 1, 'a'), (2,2,'b'), (NULL, 2, 'b');
select ROW(1, 1, 'a') IN (select a,b,c from t1);
select ROW(1, 2, 'a') IN (select a,b,c from t1);
select ROW(1, 1, 'a') IN (select b,a,c from t1);
select ROW(1, 1, 'a') IN (select a,b,c from t1 where a is not null);
select ROW(1, 2, 'a') IN (select a,b,c from t1 where a is not null);
select ROW(1, 1, 'a') IN (select b,a,c from t1 where a is not null);
select ROW(1, 1, 'a') IN (select a,b,c from t1 where c='b' or c='a');
select ROW(1, 2, 'a') IN (select a,b,c from t1 where c='b' or c='a');
select ROW(1, 1, 'a') IN (select b,a,c from t1 where c='b' or c='a');
506
-- error 1235
507 508
select ROW(1, 1, 'a') IN (select b,a,c from t1 limit 2);
drop table t1;
509

510 511 512
create table t1 (a int);
insert into t1 values (1);
do @a:=(SELECT a from t1);
513
select @a;
514
set @a:=2;
monty@mashka.mysql.fi's avatar
merge  
monty@mashka.mysql.fi committed
515
set @a:=(SELECT a from t1);
516
select @a;
517
drop table t1;
518
-- error 1146
519
do (SELECT a from t1);
520
-- error 1146
monty@mashka.mysql.fi's avatar
merge  
monty@mashka.mysql.fi committed
521
set @a:=(SELECT a from t1);
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543

CREATE TABLE t1 (a int, KEY(a)); 
HANDLER t1 OPEN;
-- error 1149
HANDLER t1 READ a=((SELECT 1));
HANDLER t1 CLOSE;
drop table t1;

create table t1 (a int);
create table t2 (b int);
insert into t1 values (1),(2);
insert into t2 values (1);
select a from t1 where a in (select a from t1 where a in (select b from t2));
drop table t1, t2;

create table t1 (a int, b int);
create table t2 like t1;
insert into t1 values (1,2),(1,3),(1,4),(1,5);
insert into t2 values (1,2),(1,3);
select * from t1 where row(a,b) in (select a,b from t2);
drop table t1, t2;

544
CREATE TABLE `t1` (`i` int(11) NOT NULL default '0',PRIMARY KEY  (`i`)) ENGINE=MyISAM CHARSET=latin1;
545 546 547 548 549 550
INSERT INTO t1 VALUES (1);
-- error 1111
UPDATE t1 SET i=i+1 WHERE i=(SELECT MAX(i));
drop table t1;

#test of uncacheable subqueries
551
CREATE TABLE t1 (a int(1));
552 553 554
EXPLAIN EXTENDED SELECT (SELECT RAND() FROM t1) FROM t1;
EXPLAIN EXTENDED SELECT (SELECT ENCRYPT('test') FROM t1) FROM t1;
EXPLAIN EXTENDED SELECT (SELECT BENCHMARK(1,1) FROM t1) FROM t1;
555
drop table t1;
556 557 558 559 560 561 562 563 564 565


CREATE TABLE `t1` (
  `mot` varchar(30) character set latin1 NOT NULL default '',
  `topic` mediumint(8) unsigned NOT NULL default '0',
  `date` date NOT NULL default '0000-00-00',
  `pseudo` varchar(35) character set latin1 NOT NULL default '',
  PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`),
  KEY `pseudo` (`pseudo`,`date`,`topic`),
  KEY `topic` (`topic`)
566
) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
567 568 569 570 571 572 573 574 575

CREATE TABLE `t2` (
  `mot` varchar(30) character set latin1 NOT NULL default '',
  `topic` mediumint(8) unsigned NOT NULL default '0',
  `date` date NOT NULL default '0000-00-00',
  `pseudo` varchar(35) character set latin1 NOT NULL default '',
  PRIMARY KEY  (`mot`,`pseudo`,`date`,`topic`),
  KEY `pseudo` (`pseudo`,`date`,`topic`),
  KEY `topic` (`topic`)
576
) ENGINE=MyISAM CHARSET=latin1 ROW_FORMAT=DYNAMIC;
577 578 579 580 581 582

CREATE TABLE `t3` (
  `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  `maxnumrep` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`numeropost`),
  UNIQUE KEY `maxnumrep` (`maxnumrep`)
583
) ENGINE=MyISAM CHARSET=latin1;
584 585 586 587 588 589 590 591 592 593 594 595 596
INSERT INTO t1 VALUES ('joce','1','','joce'),('test','2','','test');

INSERT INTO t2 VALUES ('joce','1','','joce'),('test','2','','test');

INSERT INTO t3 VALUES (1,1);

SELECT DISTINCT topic FROM t2 WHERE NOT EXISTS(SELECT * FROM t3 WHERE
numeropost=topic);
select * from t1;
DELETE FROM t1 WHERE topic IN (SELECT DISTINCT topic FROM t2 WHERE NOT
EXISTS(SELECT * FROM t3 WHERE numeropost=topic));
select * from t1;

597 598 599 600 601 602 603 604 605 606 607 608 609
drop table t1, t2, t3;

SELECT * FROM (SELECT 1 as a,(SELECT a)) a;
CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT 1)) a;
SHOW CREATE TABLE t1;
drop table t1;
CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a)) a;
SHOW CREATE TABLE t1;
drop table t1;
CREATE TABLE t1 SELECT * FROM (SELECT 1 as a,(SELECT a+0)) a;
SHOW CREATE TABLE t1;
drop table t1;
CREATE TABLE t1 SELECT (SELECT 1 as a UNION SELECT 1+1 limit 1,1) as a;
610
select * from t1;
611 612
SHOW CREATE TABLE t1;
drop table t1;
613 614 615

create table t1 (a int);
insert into t1 values (1), (2), (3);
616
explain extended select a,(select (select rand() from t1 limit 1)  from t1 limit 1)
617 618
from t1;
drop table t1;
619 620 621 622 623 624

#
# error in IN
#
-- error 1146
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);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
625 626 627 628 629 630 631 632 633 634 635 636

#
# complex subquery
#

CREATE TABLE t1 (
  ID int(11) NOT NULL auto_increment,
  name char(35) NOT NULL default '',
  t2 char(3) NOT NULL default '',
  District char(20) NOT NULL default '',
  Population int(11) NOT NULL default '0',
  PRIMARY KEY  (ID)
637
) ENGINE=MyISAM;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659

INSERT INTO t1 VALUES (130,'Sydney','AUS','New South Wales',3276207);
INSERT INTO t1 VALUES (131,'Melbourne','AUS','Victoria',2865329);
INSERT INTO t1 VALUES (132,'Brisbane','AUS','Queensland',1291117);

CREATE TABLE t2 (
  Code char(3) NOT NULL default '',
  Name char(52) NOT NULL default '',
  Continent enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL default 'Asia',
  Region char(26) NOT NULL default '',
  SurfaceArea float(10,2) NOT NULL default '0.00',
  IndepYear smallint(6) default NULL,
  Population int(11) NOT NULL default '0',
  LifeExpectancy float(3,1) default NULL,
  GNP float(10,2) default NULL,
  GNPOld float(10,2) default NULL,
  LocalName char(45) NOT NULL default '',
  GovernmentForm char(45) NOT NULL default '',
  HeadOfState char(60) default NULL,
  Capital int(11) default NULL,
  Code2 char(2) NOT NULL default '',
  PRIMARY KEY  (Code)
660
) ENGINE=MyISAM;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
661 662 663 664 665 666 667

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');
INSERT INTO t2 VALUES ('AZE','Azerbaijan','Asia','Middle East',86600.00,1991,7734000,62.9,4127.00,4100.00,'Azrbaycan','Federal Republic','Heydr liyev',144,'AZ');

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); 

drop table t1, t2;
668 669 670 671 672 673 674 675 676

#
# constants in IN
#
CREATE TABLE `t1` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `pseudo` varchar(35) character set latin1 NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `pseudo` (`pseudo`),
677
) ENGINE=MyISAM PACK_KEYS=1 ROW_FORMAT=DYNAMIC;
678 679
INSERT INTO t1 (pseudo) VALUES ('test');
SELECT 0 IN (SELECT 1 FROM t1 a);
680
EXPLAIN EXTENDED SELECT 0 IN (SELECT 1 FROM t1 a);
681 682
INSERT INTO t1 (pseudo) VALUES ('test1');
SELECT 0 IN (SELECT 1 FROM t1 a);
683
EXPLAIN EXTENDED SELECT 0 IN (SELECT 1 FROM t1 a);
684
drop table t1;
bell@sanja.is.com.ua's avatar
Merge  
bell@sanja.is.com.ua committed
685

686 687 688
CREATE TABLE `t1` (
  `i` int(11) NOT NULL default '0',
  PRIMARY KEY  (`i`)
689
) ENGINE=MyISAM CHARSET=latin1;
690 691 692 693 694 695

INSERT INTO t1 VALUES (1);
-- error 1111
UPDATE t1 SET i=i+(SELECT MAX(i) FROM (SELECT 1) t) WHERE i=(SELECT MAX(i));
-- error 1111
UPDATE t1 SET i=i+1 WHERE i=(SELECT MAX(i));
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
696
-- error 1109
697
UPDATE t1 SET t.i=i+(SELECT MAX(i) FROM (SELECT 1) t);
698
drop table t1;
699 700 701 702 703 704

#
# Multi update test
#
CREATE TABLE t1 (
  id int(11) default NULL
705
) ENGINE=MyISAM CHARSET=latin1;
706 707 708 709
INSERT INTO t1 VALUES (1),(1),(2),(2),(1),(3);
CREATE TABLE t2 (
  id int(11) default NULL,
  name varchar(15) default NULL
710
) ENGINE=MyISAM CHARSET=latin1;
711 712 713 714 715

INSERT INTO t2 VALUES (4,'vita'), (1,'vita'), (2,'vita'), (1,'vita');
update t1, t2 set t2.name='lenka' where t2.id in (select id from t1);
select * from t2;
drop table t1,t2;
716 717 718 719 720 721 722 723

#
# correct NULL in <CONSTANT> IN (SELECT ...)
#
create table t1 (a int, unique index indexa (a)); 
insert into t1 values (-1), (-4), (-2), (NULL); 
select -10 IN (select a from t1 FORCE INDEX (indexa)); 
drop table t1;
724 725 726 727 728 729

#
# Test optimization for sub selects
#
create table t1 (id int not null auto_increment primary key, salary int, key(salary));
insert into t1 (salary) values (100),(1000),(10000),(10),(500),(5000),(50000);
730
explain extended SELECT id FROM t1 where salary = (SELECT MAX(salary) FROM t1);
731
drop table t1;
732 733 734 735 736 737 738 739 740 741

CREATE TABLE t1 (
  ID int(10) unsigned NOT NULL auto_increment,
  SUB_ID int(3) unsigned NOT NULL default '0',
  REF_ID int(10) unsigned default NULL,
  REF_SUB int(3) unsigned default '0',
  PRIMARY KEY (ID,SUB_ID),
  UNIQUE KEY t1_PK (ID,SUB_ID),
  KEY t1_FK (REF_ID,REF_SUB),
  KEY t1_REFID (REF_ID)
742
) ENGINE=MyISAM CHARSET=cp1251;
743 744 745
INSERT INTO t1 VALUES (1,0,NULL,NULL),(2,0,NULL,NULL);
SELECT DISTINCT REF_ID FROM t1 WHERE ID= (SELECT DISTINCT REF_ID FROM t1 WHERE ID=2);
DROP TABLE t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
746

747 748 749 750 751 752 753 754 755 756 757 758 759
#
# uninterruptable update
#
create table t1 (a int, b int);
create table t2 (a int, b int);

insert into t1 values (1,0), (2,0), (3,0);
insert into t2 values (1,1), (2,1), (3,1), (2,2);

update ignore t1 set b=(select b from t2 where t1.a=t2.a);
select * from t1;

drop table t1, t2;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
760 761 762 763 764 765 766 767 768

#
# correct behavoiur for function from reduced subselect
#
create table t1(City VARCHAR(30),Location geometry);
insert into t1 values("Paris",GeomFromText('POINT(2.33 48.87)'));
select City from t1 where (select intersects(GeomFromText(AsText(Location)),GeomFromText('Polygon((2 50, 2.5 50, 2.5 47, 2 47, 2 50))'))=0);
drop table t1;

769 770 771 772 773 774 775 776 777 778 779
#
# reduced subselect in ORDER BY & GROUP BY clauses
#

CREATE TABLE `t1` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `pseudo` varchar(35) NOT NULL default '',
  `email` varchar(60) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `email` (`email`),
  UNIQUE KEY `pseudo` (`pseudo`),
780
) ENGINE=MyISAM CHARSET=latin1 PACK_KEYS=1 ROW_FORMAT=DYNAMIC;
781 782 783
INSERT INTO t1 (id,pseudo,email) VALUES (1,'test','test'),(2,'test1','test1');
SELECT pseudo as a, pseudo as b FROM t1 GROUP BY (SELECT a) ORDER BY (SELECT id*1);
drop table if exists t1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
784 785

(SELECT 1 as a) UNION (SELECT 1) ORDER BY (SELECT a+0);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
786

787 788 789 790 791 792 793 794 795 796
#
# IN subselect optimization test
#
create table t1 (a int not null, b int, primary key (a));
create table t2 (a int not null, primary key (a));
create table t3 (a int not null, b int, primary key (a));
insert into t1 values (1,10), (2,20), (3,30),  (4,40);
insert into t2 values (2), (3), (4), (5);
insert into t3 values (10,3), (20,4), (30,5);
select * from t2 where t2.a in (select a from t1);
797
explain extended select * from t2 where t2.a in (select a from t1);
798
select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
799
explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
800
select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
801
explain extended select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
802
drop table t1, t2, t3;
803
create table t1 (a int, b int, index a (a,b));
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
create table t2 (a int, index a (a));
create table t3 (a int, b int, index a (a));
insert into t1 values (1,10), (2,20), (3,30), (4,40);
disable_query_log;
# making table large enough
let $1 = 10000;
while ($1)
 {
  eval insert into t1 values (rand()*100000+200,rand()*100000); 
  dec $1;
 }
enable_query_log;
insert into t2 values (2), (3), (4), (5);
insert into t3 values (10,3), (20,4), (30,5);
select * from t2 where t2.a in (select a from t1);
819
explain extended select * from t2 where t2.a in (select a from t1);
820
select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
821
explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
822
select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
823
explain extended select * from t2 where t2.a in (select t1.a from t1,t3 where t1.b=t3.a);
824 825 826
insert into t1 values (3,31);
select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
select * from t2 where t2.a in (select a from t1 where t1.b <> 30 and t1.b <> 31);
827
explain extended select * from t2 where t2.a in (select a from t1 where t1.b <> 30);
828
drop table t1, t2, t3;
829

830 831 832 833 834 835 836 837 838 839
#
# alloc_group_fields() working
#
create table t1 (a int, b int);
create table t2 (a int, b int);
create table t3 (a int, b int);
insert into t1 values (0,100),(1,2), (1,3), (2,2), (2,7), (2,-1), (3,10);
insert into t2 values (0,0), (1,1), (2,1), (3,1), (4,1);
insert into t3 values (3,3), (2,2), (1,1); 
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;
840 841
drop table t1,t2,t3;

842 843 844 845 846 847 848 849 850
#
# aggregate functions in HAVING test
#
create table t1 (s1 int);
create table t2 (s1 int);
insert into t1 values (1);
insert into t2 values (1);
select * from t1 where exists (select s1 from t2 having max(t2.s1)=t1.s1);
drop table t1,t2;
851

852 853 854 855 856 857 858 859
#
# update subquery with wrong field (to force name resolving
# in UPDATE name space)
#
create table t1 (s1 int);
create table t2 (s1 int);
insert into t1 values (1);
insert into t2 values (1);
860
-- error 1054
861 862 863
update t1 set  s1 = s1 + 1 where 1 = (select x.s1 as A from t2 WHERE t2.s1 > t1.s1 order by A);
DROP TABLE t1, t2;

864 865 866 867 868 869
#
# collation test
#
CREATE TABLE t1 (s1 CHAR(5) COLLATE latin1_german1_ci,
                 s2 CHAR(5) COLLATE latin1_swedish_ci);
INSERT INTO t1 VALUES ('z','?');
bell@laptop.sanja.is.com.ua's avatar
merge  
bell@laptop.sanja.is.com.ua committed
870
-- error 1266
871
select * from t1 where s1 > (select max(s2) from t1);
bell@laptop.sanja.is.com.ua's avatar
merge  
bell@laptop.sanja.is.com.ua committed
872
-- error 1266
873 874
select * from t1 where s1 > any (select max(s2) from t1);
drop table t1;
875 876 877 878 879 880 881 882 883 884

#
# aggregate functions reinitialization
#
create table t1(toid int,rd int);
create table t2(userid int,pmnew int,pmtotal int);
insert into t2 values(1,0,0),(2,0,0);
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);
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);
drop table t1, t2;
885 886 887 888 889 890 891 892 893

#
# row union
#
create table t1 (s1 char(5));
-- error 1240
select (select 'a','b' from t1 union select 'a','b' from t1) from t1;
insert into t1 values ('tttt');
select * from t1 where ('a','b')=(select 'a','b' from t1 union select 'a','b' from t1);
894
explain extended (select * from t1);
895
(select * from t1);
896
drop table t1;
897 898 899 900 901 902 903 904 905

#
# IN optimisation test results
#
create table t1 (s1 char(5), index s1(s1));
create table t2 (s1 char(5), index s1(s1));
insert into t1 values ('a1'),('a2'),('a3');
insert into t2 values ('a1'),('a2');
select s1, s1 NOT IN (SELECT s1 FROM t2) from t1;
906 907
select s1, s1 = ANY (SELECT s1 FROM t2) from t1;
select s1, s1 <> ALL (SELECT s1 FROM t2) from t1;
908
select s1, s1 NOT IN (SELECT s1 FROM t2 WHERE s1 < 'a2') from t1;
909
explain extended select s1, s1 NOT IN (SELECT s1 FROM t2) from t1;
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
910 911
explain extended select s1, s1 = ANY (SELECT s1 FROM t2) from t1;
explain extended select s1, s1 <> ALL (SELECT s1 FROM t2) from t1;
912
explain extended select s1, s1 NOT IN (SELECT s1 FROM t2 WHERE s1 < 'a2') from t1;
913
drop table t1,t2;
914

915 916 917 918 919 920 921
#
# correct ALL optimisation
#
create table t2 (a int, b int);
create table t3 (a int);
insert into t3 values (6),(7),(3);
select * from t3 where a >= all (select b from t2);
922
explain extended select * from t3 where a >= all (select b from t2);
923

924
#
925
# optimized static ALL/ANY with grouping
926
#
927 928
insert into t2 values (2,2), (2,1), (3,3), (3,1);
select * from t3 where a > all (select max(b) from t2 group by a);
929
explain extended select * from t3 where a > all (select max(b) from t2 group by a);
930
drop table t2, t3;
931

932 933 934 935
#
# correct used_tables()
#

936
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 ;
937
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());
938
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;
939
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);
940
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 ;
941
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);
942
CREATE TABLE `t4` (`task_id` smallint(6) NOT NULL default '0',`description` varchar(200) NOT NULL default '') ENGINE=MyISAM CHARSET=latin1;
943 944 945 946
INSERT INTO `t4` (`task_id`, `description`) VALUES (1, 'Daily Check List'),(2, 'Weekly Status');
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;
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;
drop table t1,t2,t3,t4;
bell@sanja.is.com.ua's avatar
Merge  
bell@sanja.is.com.ua committed
947

948 949 950
#
# cardinality check
#
951
CREATE TABLE t1 (id int(11) default NULL) ENGINE=MyISAM CHARSET=latin1;
952
INSERT INTO t1 VALUES (1),(5);
953
CREATE TABLE t2 (id int(11) default NULL) ENGINE=MyISAM CHARSET=latin1;
954 955 956 957
INSERT INTO t2 VALUES (2),(6);
-- error 1240
select * from t1 where (1,2,6) in (select * from t2);
DROP TABLE t1,t2;
bell@sanja.is.com.ua's avatar
Merge  
bell@sanja.is.com.ua committed
958

959 960 961 962 963 964 965 966 967 968
#
# DO and SET with errors
#
create table t1 (s1 int);
insert into t1 values (1);
insert into t1 values (2);
-- error 1241
set sort_buffer_size = (select s1 from t1);
do (select * from t1);
drop table t1;
969 970 971 972 973 974 975 976 977 978

#
# optimized ALL/ANY with union
#
create table t1 (s1 char);
insert into t1 values ('e');
select * from t1 where 'f' > any (select s1 from t1);
select * from t1 where 'f' > any (select s1 from t1 union select s1 from t1);
explain select * from t1 where 'f' > any (select s1 from t1 union select s1 from t1);
drop table t1;
979 980 981 982

#
# filesort in subquery (restoring join_tab)
#
983
CREATE TABLE t1 (number char(11) NOT NULL default '') ENGINE=MyISAM CHARSET=latin1;
984
INSERT INTO t1 VALUES ('69294728265'),('18621828126'),('89356874041'),('95895001874');
985
CREATE TABLE t2 (code char(5) NOT NULL default '',UNIQUE KEY code (code)) ENGINE=MyISAM CHARSET=latin1;
986 987 988
INSERT INTO t2 VALUES ('1'),('1226'),('1245'),('1862'),('18623'),('1874'),('1967'),('6');
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;
drop table t1, t2;
989 990 991 992 993 994 995 996 997 998 999 1000

#
# unresolved field error
#
create table t1 (s1 int); 
create table t2 (s1 int);
-- error 1054
select * from t1 where (select count(*) from t2 where t1.s2) = 1;
-- error 1054
select * from t1 where (select count(*) from t2 group by t1.s2) = 1;
-- error 1109
select count(*) from t2 group by t1.s2;
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
1001
drop table t1, t2;
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
1002

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1003 1004 1005 1006 1007 1008 1009 1010
#
# fix_fields() in add_ref_to_table_cond()
#
CREATE TABLE t1(COLA FLOAT NOT NULL,COLB FLOAT NOT NULL,COLC VARCHAR(20) DEFAULT NULL,PRIMARY KEY (COLA, COLB));
CREATE TABLE t2(COLA FLOAT NOT NULL,COLB FLOAT NOT NULL,COLC CHAR(1) NOT NULL,PRIMARY KEY (COLA));
INSERT INTO t1 VALUES (1,1,'1A3240'), (1,2,'4W2365');
INSERT INTO t2 VALUES (100, 200, 'C');
SELECT DISTINCT COLC FROM t1 WHERE COLA = (SELECT COLA FROM t2 WHERE COLB = 200 AND COLC ='C' LIMIT 1);
1011
DROP TABLE t1, t2;
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023

#
# Bug 2198
#

create table t1 (a int, b decimal(13, 3)); 
insert into t1 values (1, 0.123);
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
delete from t1;
load data infile "subselect.out.file.1" into table t1;
select * from t1;
drop table t1;
1024 1025 1026 1027 1028

#
# Bug 2479
#

serg@serg.mylan's avatar
serg@serg.mylan committed
1029
CREATE TABLE t1 (
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
id int(11) NOT NULL auto_increment,
ts timestamp NOT NULL,
id_cns tinyint(3) unsigned NOT NULL default '0',
id_desc_nota int(11) NOT NULL default '1',
id_publ_uff int(11) NOT NULL default '0',
tipo enum('','UNO','DUE') NOT NULL default '',
f_aggiunte set('TRE','TRETRE','QUATTRO','CINQUE','SEI','SETTE') NOT NULL
default '',
anno_dep smallint(4) unsigned zerofill NOT NULL default '0000',
data_dep smallint(4) unsigned zerofill NOT NULL default '0000',
particolare mediumint(8) unsigned NOT NULL default '0',
generale mediumint(8) unsigned NOT NULL default '0',
bis tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY(id),
UNIQUE KEY idx_cns_gen_anno (anno_dep,id_cns,generale,particolare),
UNIQUE KEY idx_cns_par_anno (id_cns,anno_dep,tipo,particolare,bis)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PACK_KEYS=1;

serg@serg.mylan's avatar
serg@serg.mylan committed
1048
INSERT INTO t1 (id, ts, id_cns, id_desc_nota, id_publ_uff, tipo, f_aggiunte,
1049 1050 1051 1052 1053 1054 1055 1056
anno_dep, data_dep, particolare, generale, bis) VALUES
(NULL, NULL,  16, 29, 622, 'UNO', '', 1987, 1218, 2048, 9681, 0),
(NULL, NULL,  50, 23, 1717, 'UNO', '', 1987, 1126, 1536, 13987, 0),
(NULL, NULL,  16, 123, 123, 'UNO', '', 1987, 1221, 2432, 14594, 0),
(NULL, NULL,  16, 124, 124, 'UNO', '', 1987, 1201, 1792, 13422, 0),
(NULL, NULL,  16, 125, 125, 'UNO', '', 1987, 0723, 1025, 10240, 0),
(NULL, NULL,  16, 126, 126, 'UNO', '', 1987, 1204, 1026, 7089, 0);
  
serg@serg.mylan's avatar
serg@serg.mylan committed
1057
CREATE TABLE t2 (
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
id tinyint(3) unsigned NOT NULL auto_increment,
descr varchar(40) NOT NULL default '',
f_servizi set('UNO','DUE') NOT NULL default '',
data_uno_min int(8) unsigned NOT NULL default '0',
data_due_min int(8) unsigned NOT NULL default '0',
max_anno_dep smallint(6) unsigned NOT NULL default '0',
data_agg int(8) unsigned NOT NULL default '0',
PRIMARY KEY  (id)
);

serg@serg.mylan's avatar
serg@serg.mylan committed
1068
INSERT INTO t2 (id, descr, f_servizi, data_uno_min, data_due_min,
1069 1070 1071 1072
max_anno_dep, data_agg) VALUES 
(16, 'C_UNO', 'UNO,DUE', 19000000, 30000000, 1987, 0),
(50, 'C_TRE', 'UNO', 19000000, 30000000, 1990, 0);

serg@serg.mylan's avatar
serg@serg.mylan committed
1073
SELECT cns.max_anno_dep = (SELECT s.anno_dep FROM t1 AS s WHERE
1074
s.id_cns = cns.id ORDER BY s.anno_dep DESC LIMIT 1) AS PIPPO FROM
serg@serg.mylan's avatar
serg@serg.mylan committed
1075
t2 AS cns;
1076

serg@serg.mylan's avatar
serg@serg.mylan committed
1077
DROP TABLE t1, t2;