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

MySQL数据库

开发平台:

Visual C++

  1. # Initialise
  2. --disable_warnings
  3. drop table if exists t1,t2,t3;
  4. --enable_warnings
  5. #
  6. # Simple test without tables
  7. -- error 1111
  8. SELECT 1 FROM (SELECT 1) as a  GROUP BY SUM(1);
  9. #
  10. # Test of group (Failed for Lars Hoss <lh@pbm.de>)
  11. #
  12. CREATE TABLE t1 (
  13.   spID int(10) unsigned,
  14.   userID int(10) unsigned,
  15.   score smallint(5) unsigned,
  16.   lsg char(40),
  17.   date date
  18. );
  19. INSERT INTO t1 VALUES (1,1,1,'','0000-00-00');
  20. INSERT INTO t1 VALUES (2,2,2,'','0000-00-00');
  21. INSERT INTO t1 VALUES (2,1,1,'','0000-00-00');
  22. INSERT INTO t1 VALUES (3,3,3,'','0000-00-00');
  23. CREATE TABLE t2 (
  24.   userID int(10) unsigned NOT NULL auto_increment,
  25.   niName char(15),
  26.   passwd char(8),
  27.   mail char(50),
  28.   isAukt enum('N','Y') DEFAULT 'N',
  29.   vName char(30),
  30.   nName char(40),
  31.   adr char(60),
  32.   plz char(5),
  33.   ort char(35),
  34.   land char(20),
  35.   PRIMARY KEY (userID)
  36. );
  37. INSERT INTO t2 VALUES (1,'name','pass','mail','Y','v','n','adr','1','1','1');
  38. INSERT INTO t2 VALUES (2,'name','pass','mail','Y','v','n','adr','1','1','1');
  39. INSERT INTO t2 VALUES (3,'name','pass','mail','Y','v','n','adr','1','1','1');
  40. INSERT INTO t2 VALUES (4,'name','pass','mail','Y','v','n','adr','1','1','1');
  41. INSERT INTO t2 VALUES (5,'name','pass','mail','Y','v','n','adr','1','1','1');
  42. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID GROUP BY t2.userid;
  43. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID GROUP BY t2.userid ORDER BY NULL;
  44. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid;
  45. SELECT t2.userid, MIN(t1.score+0.0) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid;
  46. SELECT t2.userid, MIN(t1.score+0.0) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid ORDER BY NULL;
  47. EXPLAIN SELECT t2.userid, MIN(t1.score+0.0) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid ORDER BY NULL;
  48. drop table t1,t2;
  49. #
  50. # Bug in GROUP BY, by Nikki Chumakov <nikki@saddam.cityline.ru>
  51. #
  52. CREATE TABLE t1 (
  53.   PID int(10) unsigned NOT NULL auto_increment,
  54.   payDate date DEFAULT '0000-00-00' NOT NULL,
  55.   recDate datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  56.   URID int(10) unsigned DEFAULT '0' NOT NULL,
  57.   CRID int(10) unsigned DEFAULT '0' NOT NULL,
  58.   amount int(10) unsigned DEFAULT '0' NOT NULL,
  59.   operator int(10) unsigned,
  60.   method enum('unknown','cash','dealer','check','card','lazy','delayed','test') DEFAULT 'unknown' NOT NULL,
  61.   DIID int(10) unsigned,
  62.   reason char(1) binary DEFAULT '' NOT NULL,
  63.   code_id int(10) unsigned,
  64.   qty mediumint(8) unsigned DEFAULT '0' NOT NULL,
  65.   PRIMARY KEY (PID),
  66.   KEY URID (URID),
  67.   KEY reason (reason),
  68.   KEY method (method),
  69.   KEY payDate (payDate)
  70. );
  71. INSERT INTO t1 VALUES (1,'1970-01-01','1997-10-17 00:00:00',2529,1,21000,11886,'check',0,'F',16200,6);
  72. --error 1056
  73. SELECT COUNT(P.URID),SUM(P.amount),P.method, MIN(PP.recdate+0) > 19980501000000   AS IsNew FROM t1 AS P JOIN t1 as PP WHERE P.URID = PP.URID GROUP BY method,IsNew;
  74. drop table t1;
  75. #
  76. # Problem with GROUP BY + ORDER BY when no match
  77. # Tested with locking
  78. #
  79. CREATE TABLE t1 (
  80.   cid mediumint(9) NOT NULL auto_increment,
  81.   firstname varchar(32) DEFAULT '' NOT NULL,
  82.   surname varchar(32) DEFAULT '' NOT NULL,
  83.   PRIMARY KEY (cid)
  84. );
  85. INSERT INTO t1 VALUES (1,'That','Guy');
  86. INSERT INTO t1 VALUES (2,'Another','Gent');
  87. CREATE TABLE t2 (
  88.   call_id mediumint(8) NOT NULL auto_increment,
  89.   contact_id mediumint(8) DEFAULT '0' NOT NULL,
  90.   PRIMARY KEY (call_id),
  91.   KEY contact_id (contact_id)
  92. );
  93. lock tables t1 read,t2 write;
  94. INSERT INTO t2 VALUES (10,2);
  95. INSERT INTO t2 VALUES (18,2);
  96. INSERT INTO t2 VALUES (62,2);
  97. INSERT INTO t2 VALUES (91,2);
  98. INSERT INTO t2 VALUES (92,2);
  99. SELECT cid, CONCAT(firstname, ' ', surname), COUNT(call_id) FROM t1 LEFT JOIN t2 ON cid=contact_id WHERE firstname like '%foo%' GROUP BY cid;
  100. SELECT cid, CONCAT(firstname, ' ', surname), COUNT(call_id) FROM t1 LEFT JOIN t2 ON cid=contact_id WHERE firstname like '%foo%' GROUP BY cid ORDER BY NULL;
  101. SELECT HIGH_PRIORITY cid, CONCAT(firstname, ' ', surname), COUNT(call_id) FROM t1 LEFT JOIN t2 ON cid=contact_id WHERE firstname like '%foo%' GROUP BY cid ORDER BY surname, firstname;
  102. drop table t1,t2;
  103. unlock tables;
  104. #
  105. # Test of group by bug in bugzilla
  106. #
  107. CREATE TABLE t1 (
  108.   bug_id mediumint(9) NOT NULL auto_increment,
  109.   groupset bigint(20) DEFAULT '0' NOT NULL,
  110.   assigned_to mediumint(9) DEFAULT '0' NOT NULL,
  111.   bug_file_loc text,
  112.   bug_severity enum('blocker','critical','major','normal','minor','trivial','enhancement') DEFAULT 'blocker' NOT NULL,
  113.   bug_status enum('','NEW','ASSIGNED','REOPENED','RESOLVED','VERIFIED','CLOSED') DEFAULT 'NEW' NOT NULL,
  114.   creation_ts datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  115.   delta_ts timestamp(14),
  116.   short_desc mediumtext,
  117.   long_desc mediumtext,
  118.   op_sys enum('All','Windows 3.1','Windows 95','Windows 98','Windows NT','Windows 2000','Linux','other') DEFAULT 'All' NOT NULL,
  119.   priority enum('P1','P2','P3','P4','P5') DEFAULT 'P1' NOT NULL,
  120.   product varchar(64) DEFAULT '' NOT NULL,
  121.   rep_platform enum('All','PC','VTD-8','Other'),
  122.   reporter mediumint(9) DEFAULT '0' NOT NULL,
  123.   version varchar(16) DEFAULT '' NOT NULL,
  124.   component varchar(50) DEFAULT '' NOT NULL,
  125.   resolution enum('','FIXED','INVALID','WONTFIX','LATER','REMIND','DUPLICATE','WORKSFORME') DEFAULT '' NOT NULL,
  126.   target_milestone varchar(20) DEFAULT '' NOT NULL,
  127.   qa_contact mediumint(9) DEFAULT '0' NOT NULL,
  128.   status_whiteboard mediumtext NOT NULL,
  129.   votes mediumint(9) DEFAULT '0' NOT NULL,
  130.   PRIMARY KEY (bug_id),
  131.   KEY assigned_to (assigned_to),
  132.   KEY creation_ts (creation_ts),
  133.   KEY delta_ts (delta_ts),
  134.   KEY bug_severity (bug_severity),
  135.   KEY bug_status (bug_status),
  136.   KEY op_sys (op_sys),
  137.   KEY priority (priority),
  138.   KEY product (product),
  139.   KEY reporter (reporter),
  140.   KEY version (version),
  141.   KEY component (component),
  142.   KEY resolution (resolution),
  143.   KEY target_milestone (target_milestone),
  144.   KEY qa_contact (qa_contact),
  145.   KEY votes (votes)
  146. );
  147. INSERT INTO t1 VALUES (1,0,0,'','normal','','2000-02-10 09:25:12',20000321114747,'','','Linux','P1','TestProduct','PC',3,'other','TestComponent','','M1',0,'',0);
  148. INSERT INTO t1 VALUES (9,0,0,'','enhancement','','2000-03-10 11:49:36',20000321114747,'','','All','P5','AAAAA','PC',3,'2.00 CD - Pre','BBBBBBBBBBBBB - conversion','','',0,'',0);
  149. INSERT INTO t1 VALUES (10,0,0,'','enhancement','','2000-03-10 18:10:16',20000321114747,'','','All','P4','AAAAA','PC',3,'2.00 CD - Pre','BBBBBBBBBBBBB - conversion','','',0,'',0);
  150. INSERT INTO t1 VALUES (7,0,0,'','critical','','2000-03-09 10:50:21',20000321114747,'','','All','P1','AAAAA','PC',3,'2.00 CD - Pre','BBBBBBBBBBBBB - generic','','',0,'',0);
  151. INSERT INTO t1 VALUES (6,0,0,'','normal','','2000-03-09 10:42:44',20000321114747,'','','All','P2','AAAAA','PC',3,'2.00 CD - Pre','kkkkkkkkkkk lllllllllll','','',0,'',0);
  152. INSERT INTO t1 VALUES (8,0,0,'','major','','2000-03-09 11:32:14',20000321114747,'','','All','P3','AAAAA','PC',3,'2.00 CD - Pre','kkkkkkkkkkk lllllllllll','','',0,'',0);
  153. INSERT INTO t1 VALUES (5,0,0,'','enhancement','','2000-03-09 10:38:59',20000321114747,'','','All','P5','CCC/CCCCCC','PC',5,'7.00','Administration','','',0,'',0);
  154. INSERT INTO t1 VALUES (4,0,0,'','normal','','2000-03-08 18:32:14',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent2','','',0,'',0);
  155. INSERT INTO t1 VALUES (3,0,0,'','normal','','2000-03-08 18:30:52',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent','','',0,'',0);
  156. INSERT INTO t1 VALUES (2,0,0,'','enhancement','','2000-03-08 18:24:51',20000321114747,'','','All','P2','TestProduct','Other',4,'other','TestComponent2','','',0,'',0);
  157. INSERT INTO t1 VALUES (11,0,0,'','blocker','','2000-03-13 09:43:41',20000321114747,'','','All','P2','CCC/CCCCCC','PC',5,'7.00','DDDDDDDDD','','',0,'',0);
  158. INSERT INTO t1 VALUES (12,0,0,'','normal','','2000-03-13 16:14:31',20000321114747,'','','All','P2','AAAAA','PC',3,'2.00 CD - Pre','kkkkkkkkkkk lllllllllll','','',0,'',0);
  159. INSERT INTO t1 VALUES (13,0,0,'','normal','','2000-03-15 16:20:44',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent','','',0,'',0);
  160. INSERT INTO t1 VALUES (14,0,0,'','blocker','','2000-03-15 18:13:47',20000321114747,'','','All','P1','AAAAA','PC',3,'2.00 CD - Pre','BBBBBBBBBBBBB - generic','','',0,'',0);
  161. INSERT INTO t1 VALUES (15,0,0,'','minor','','2000-03-16 18:03:28',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','DDDDDDDDD','','',0,'',0);
  162. INSERT INTO t1 VALUES (16,0,0,'','normal','','2000-03-16 18:33:41',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  163. INSERT INTO t1 VALUES (17,0,0,'','normal','','2000-03-16 18:34:18',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  164. INSERT INTO t1 VALUES (18,0,0,'','normal','','2000-03-16 18:34:56',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  165. INSERT INTO t1 VALUES (19,0,0,'','enhancement','','2000-03-16 18:35:34',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  166. INSERT INTO t1 VALUES (20,0,0,'','enhancement','','2000-03-16 18:36:23',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  167. INSERT INTO t1 VALUES (21,0,0,'','enhancement','','2000-03-16 18:37:23',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  168. INSERT INTO t1 VALUES (22,0,0,'','enhancement','','2000-03-16 18:38:16',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','Administration','','',0,'',0);
  169. INSERT INTO t1 VALUES (23,0,0,'','normal','','2000-03-16 18:58:12',20000321114747,'','','All','P2','CCC/CCCCCC','Other',5,'7.00','DDDDDDDDD','','',0,'',0);
  170. INSERT INTO t1 VALUES (24,0,0,'','normal','','2000-03-17 11:08:10',20000321114747,'','','All','P2','AAAAAAAA-AAA','PC',3,'2.8','Web Interface','','',0,'',0);
  171. INSERT INTO t1 VALUES (25,0,0,'','normal','','2000-03-17 11:10:45',20000321114747,'','','All','P2','AAAAAAAA-AAA','PC',3,'2.8','Web Interface','','',0,'',0);
  172. INSERT INTO t1 VALUES (26,0,0,'','normal','','2000-03-17 11:15:47',20000321114747,'','','All','P2','AAAAAAAA-AAA','PC',3,'2.8','Web Interface','','',0,'',0);
  173. INSERT INTO t1 VALUES (27,0,0,'','normal','','2000-03-17 17:45:41',20000321114747,'','','All','P2','CCC/CCCCCC','PC',5,'7.00','DDDDDDDDD','','',0,'',0);
  174. INSERT INTO t1 VALUES (28,0,0,'','normal','','2000-03-20 09:51:45',20000321114747,'','','Windows NT','P2','TestProduct','PC',8,'other','TestComponent','','',0,'',0);
  175. INSERT INTO t1 VALUES (29,0,0,'','normal','','2000-03-20 11:15:09',20000321114747,'','','All','P5','AAAAAAAA-AAA','PC',3,'2.8','Web Interface','','',0,'',0);
  176. CREATE TABLE t2 (
  177.   value tinytext,
  178.   program varchar(64),
  179.   initialowner tinytext NOT NULL,
  180.   initialqacontact tinytext NOT NULL,
  181.   description mediumtext NOT NULL
  182. );
  183. INSERT INTO t2 VALUES ('TestComponent','TestProduct','id0001','','');
  184. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - conversion','AAAAA','id0001','','');
  185. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - generic','AAAAA','id0001','','');
  186. INSERT INTO t2 VALUES ('TestComponent2','TestProduct','id0001','','');
  187. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - eeeeeeeee','AAAAA','id0001','','');
  188. INSERT INTO t2 VALUES ('kkkkkkkkkkk lllllllllll','AAAAA','id0001','','');
  189. INSERT INTO t2 VALUES ('Test Procedures','AAAAA','id0001','','');
  190. INSERT INTO t2 VALUES ('Documentation','AAAAA','id0003','','');
  191. INSERT INTO t2 VALUES ('DDDDDDDDD','CCC/CCCCCC','id0002','','');
  192. INSERT INTO t2 VALUES ('Eeeeeeee Lite','CCC/CCCCCC','id0002','','');
  193. INSERT INTO t2 VALUES ('Eeeeeeee Full','CCC/CCCCCC','id0002','','');
  194. INSERT INTO t2 VALUES ('Administration','CCC/CCCCCC','id0002','','');
  195. INSERT INTO t2 VALUES ('Distribution','CCC/CCCCCC','id0002','','');
  196. INSERT INTO t2 VALUES ('Setup','CCC/CCCCCC','id0002','','');
  197. INSERT INTO t2 VALUES ('Unspecified','CCC/CCCCCC','id0002','','');
  198. INSERT INTO t2 VALUES ('Web Interface','AAAAAAAA-AAA','id0001','','');
  199. INSERT INTO t2 VALUES ('Host communication','AAAAA','id0001','','');
  200. select value,description,bug_id from t2 left join t1 on t2.program=t1.product and t2.value=t1.component where program="AAAAA";
  201. select value,description,COUNT(bug_id) from t2 left join t1 on t2.program=t1.product and t2.value=t1.component where program="AAAAA" group by value;
  202. select value,description,COUNT(bug_id) from t2 left join t1 on t2.program=t1.product and t2.value=t1.component where program="AAAAA" group by value having COUNT(bug_id) IN (0,2);
  203. drop table t1,t2;
  204. #
  205. # Problem with functions and group functions when no matching rows
  206. #
  207. create table t1 (foo int);
  208. insert into t1 values (1);
  209. select 1+1, "a",count(*) from t1 where foo in (2);
  210. insert into t1 values (1);
  211. select 1+1,"a",count(*) from t1 where foo in (2);
  212. drop table t1;
  213. #
  214. # Test GROUP BY DESC
  215. CREATE TABLE t1 (
  216.   spID int(10) unsigned,
  217.   userID int(10) unsigned,
  218.   score smallint(5) unsigned,
  219.   key (spid),
  220.   key (score)
  221. );
  222. INSERT INTO t1 VALUES (1,1,1),(2,2,2),(2,1,1),(3,3,3),(4,3,3),(5,3,3),(6,3,3),(7,3,3);
  223. explain select userid,count(*) from t1 group by userid desc;
  224. explain select userid,count(*) from t1 group by userid desc order by null;
  225. select userid,count(*) from t1 group by userid desc;
  226. select userid,count(*) from t1 group by userid desc having (count(*)+1) IN (4,3);
  227. select userid,count(*) from t1 group by userid desc having 3  IN (1,COUNT(*));
  228. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid desc;
  229. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid;
  230. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid order by null;
  231. select spid,count(*) from t1 where spid between 1 and 2 group by spid;
  232. select spid,count(*) from t1 where spid between 1 and 2 group by spid desc;
  233. explain extended select sql_big_result spid,sum(userid) from t1 group by spid desc;
  234. explain select sql_big_result spid,sum(userid) from t1 group by spid desc order by null;
  235. select sql_big_result spid,sum(userid) from t1 group by spid desc;
  236. explain select sql_big_result score,count(*) from t1 group by score desc;
  237. explain select sql_big_result score,count(*) from t1 group by score desc order by null;
  238. select sql_big_result score,count(*) from t1 group by score desc;
  239. drop table t1;
  240. # not purely group_by bug, but group_by is involved...
  241. create table t1 (a date default null, b date default null);
  242. insert t1 values ('1999-10-01','2000-01-10'), ('1997-01-01','1998-10-01');
  243. select a,min(b) c,count(distinct rand()) from t1 group by a having c<a + interval 1 day;
  244. drop table t1;
  245. # Compare with hash keys
  246. CREATE TABLE t1 (a char(1));
  247. INSERT INTO t1 VALUES ('A'),('B'),('A'),('B'),('A'),('B'),(NULL),('a'),('b'),(NULL),('A'),('B'),(NULL);
  248. SELECT a FROM t1 GROUP BY a;
  249. SELECT a,count(*) FROM t1 GROUP BY a;
  250. SELECT a FROM t1 GROUP BY binary a;
  251. SELECT a,count(*) FROM t1 GROUP BY binary a;
  252. SELECT binary a FROM t1 GROUP BY 1;
  253. SELECT binary a,count(*) FROM t1 GROUP BY 1;
  254. # Do the same tests with MyISAM temporary tables
  255. SET SQL_BIG_TABLES=1;
  256. SELECT a FROM t1 GROUP BY a;
  257. SELECT a,count(*) FROM t1 GROUP BY a;
  258. SELECT a FROM t1 GROUP BY binary a;
  259. SELECT a,count(*) FROM t1 GROUP BY binary a;
  260. SELECT binary a FROM t1 GROUP BY 1;
  261. SELECT binary a,count(*) FROM t1 GROUP BY 1;
  262. SET SQL_BIG_TABLES=0;
  263. drop table t1;
  264. #
  265. # Test of key >= 256 bytes
  266. #
  267. CREATE TABLE t1 (
  268.   `a` char(193) default NULL,
  269.   `b` char(63) default NULL
  270. );
  271. INSERT INTO t1 VALUES ('abc','def'),('hij','klm');
  272. SELECT CONCAT(a, b) FROM t1 GROUP BY 1;
  273. SELECT CONCAT(a, b),count(*) FROM t1 GROUP BY 1;
  274. SELECT CONCAT(a, b),count(distinct a) FROM t1 GROUP BY 1;
  275. SELECT 1 FROM t1 GROUP BY CONCAT(a, b);
  276. INSERT INTO t1 values ('hij','klm');
  277. SELECT CONCAT(a, b),count(*) FROM t1 GROUP BY 1;
  278. DROP TABLE t1;
  279. #
  280. # Test problem with ORDER BY on a SUM() column
  281. #
  282. create table t1 (One int unsigned, Two int unsigned, Three int unsigned, Four int unsigned);
  283. insert into t1 values (1,2,1,4),(1,2,2,4),(1,2,3,4),(1,2,4,4),(1,1,1,4),(1,1,2,4),(1,1,3,4),(1,1,4,4),(1,3,1,4),(1,3,2,4),(1,3,3,4),(1,3,4,4);
  284. select One, Two, sum(Four) from t1 group by One,Two;
  285. drop table t1;
  286. create table t1 (id integer primary key not null auto_increment, gender char(1));
  287. insert into t1 values (NULL, 'M'), (NULL, 'F'),(NULL, 'F'),(NULL, 'F'),(NULL, 'M');
  288. create table t2 (user_id integer not null, date date);
  289. insert into t2 values (1, '2002-06-09'),(2, '2002-06-09'),(1, '2002-06-09'),(3, '2002-06-09'),(4, '2002-06-09'),(4, '2002-06-09');
  290. select u.gender as gender, count(distinct  u.id) as dist_count, (count(distinct u.id)/5*100) as percentage from t1 u, t2 l where l.user_id = u.id group by u.gender;
  291. select u.gender as  gender, count(distinct  u.id) as dist_count, (count(distinct u.id)/5*100) as percentage from t1 u, t2 l where l.user_id = u.id group by u.gender  order by percentage;
  292. drop table t1,t2;
  293. #
  294. # The GROUP BY returned rows in wrong order in 3.23.51
  295. #
  296. CREATE TABLE t1 (ID1 int, ID2 int, ID int NOT NULL AUTO_INCREMENT,PRIMARY KEY(ID
  297. ));
  298. insert into t1 values (1,244,NULL),(2,243,NULL),(134,223,NULL),(185,186,NULL);
  299. select S.ID as xID, S.ID1 as xID1 from t1 as S left join t1 as yS  on S.ID1 between yS.ID1 and yS.ID2;
  300. select S.ID as xID, S.ID1 as xID1, repeat('*',count(distinct yS.ID)) as Level from t1 as S left join t1 as yS  on S.ID1 between yS.ID1 and yS.ID2 group by xID order by xID1;
  301. drop table t1;
  302. #
  303. # Problem with MAX and LEFT JOIN
  304. #
  305. CREATE TABLE t1 (
  306.   pid int(11) unsigned NOT NULL default '0',
  307.   c1id int(11) unsigned default NULL,
  308.   c2id int(11) unsigned default NULL,
  309.   value int(11) unsigned NOT NULL default '0',
  310.   UNIQUE KEY pid2 (pid,c1id,c2id),
  311.   UNIQUE KEY pid (pid,value)
  312. ) ENGINE=MyISAM;
  313. INSERT INTO t1 VALUES (1, 1, NULL, 1),(1, 2, NULL, 2),(1, NULL, 3, 3),(1, 4, NULL, 4),(1, 5, NULL, 5);
  314. CREATE TABLE t2 (
  315.   id int(11) unsigned NOT NULL default '0',
  316.   active enum('Yes','No') NOT NULL default 'Yes',
  317.   PRIMARY KEY  (id)
  318. ) ENGINE=MyISAM;
  319. INSERT INTO t2 VALUES (1, 'Yes'),(2, 'No'),(4, 'Yes'),(5, 'No');
  320. CREATE TABLE t3 (
  321.   id int(11) unsigned NOT NULL default '0',
  322.   active enum('Yes','No') NOT NULL default 'Yes',
  323.   PRIMARY KEY  (id)
  324. );
  325. INSERT INTO t3 VALUES (3, 'Yes');
  326. select * from t1 AS m LEFT JOIN t2 AS c1 ON m.c1id = 
  327. c1.id AND c1.active = 'Yes' LEFT JOIN t3 AS c2 ON m.c2id = c2.id AND 
  328. c2.active = 'Yes' WHERE m.pid=1  AND (c1.id IS NOT NULL OR c2.id IS NOT NULL);
  329. select max(value) from t1 AS m LEFT JOIN t2 AS c1 ON 
  330. m.c1id = c1.id AND c1.active = 'Yes' LEFT JOIN t3 AS c2 ON m.c2id = 
  331. c2.id AND c2.active = 'Yes' WHERE m.pid=1  AND (c1.id IS NOT NULL OR c2.id IS 
  332. NOT NULL);
  333. drop table t1,t2,t3;
  334. #
  335. # Test bug in GROUP BY on BLOB that is NULL or empty
  336. #
  337. create table t1 (a blob null);
  338. insert into t1 values (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(""),(""),(""),("b");
  339. select a,count(*) from t1 group by a;
  340. set option sql_big_tables=1;
  341. select a,count(*) from t1 group by a;
  342. drop table t1;
  343. #
  344. # Test of GROUP BY ... ORDER BY NULL optimization
  345. #
  346. create table t1 (a int not null, b int not null);
  347. insert into t1 values (1,1),(1,2),(3,1),(3,2),(2,2),(2,1);
  348. create table t2 (a int not null, b int not null, key(a));
  349. insert into t2 values (1,3),(3,1),(2,2),(1,1);
  350. select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b;
  351. select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b ORDER BY NULL;
  352. explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b;
  353. explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b ORDER BY NULL;
  354. drop table t1,t2;
  355. #
  356. # group function arguments in some functions
  357. #
  358. create table t1 (a int, b int);
  359. insert into t1 values (1, 4),(10, 40),(1, 4),(10, 43),(1, 4),(10, 41),(1, 4),(10, 43),(1, 4);
  360. select a, MAX(b), INTERVAL (MAX(b), 1,3,10,30,39,40,50,60,100,1000) from t1 group by a;
  361. select a, MAX(b), CASE MAX(b) when 4 then 4 when 43 then 43 else 0 end from t1 group by a;
  362. select a, MAX(b), FIELD(MAX(b), '43', '4', '5') from t1 group by a;
  363. select a, MAX(b), CONCAT_WS(MAX(b), '43', '4', '5') from t1 group by a;
  364. select a, MAX(b), ELT(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f') from t1 group by a;
  365. select a, MAX(b), MAKE_SET(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') from t1 group by a;
  366. drop table t1;
  367. #
  368. # Problem with group by and alias
  369. #
  370. create table t1 (id int not null, qty int not null);
  371. insert into t1 values (1,2),(1,3),(2,4),(2,5);
  372. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sum(qty)>2 and cqty>1;
  373. select id, sum(qty) as sqty from t1 group by id having sqty>2 and count(qty)>1;
  374. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sqty>2 and cqty>1;
  375. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sum(qty)>2 and count(qty)>1;
  376. select count(*), case interval(qty,2,3,4,5,6,7,8) when -1 then NULL when 0 then "zero" when 1 then "one" when 2 then "two" end as category from t1 group by category;
  377. select count(*), interval(qty,2,3,4,5,6,7,8) as category from t1 group by category;
  378. drop table t1;
  379. #
  380. # Tests for bug #1355: 'Using filesort' is missing in EXPLAIN when ORDER BY
  381. # NULL is used.
  382. #
  383. CREATE TABLE t1 (
  384.   userid int(10) unsigned,
  385.   score smallint(5) unsigned,
  386.   key (score)
  387. );
  388. INSERT INTO t1 VALUES (1,1),(2,2),(1,1),(3,3),(3,3),(3,3),(3,3),(3,3);
  389. # Here we select unordered GROUP BY into a temporary talbe, 
  390. # and then sort it with filesort (GROUP BY in MySQL 
  391. # implies sorted order of results)
  392. SELECT userid,count(*) FROM t1 GROUP BY userid DESC;
  393. EXPLAIN SELECT userid,count(*) FROM t1 GROUP BY userid DESC;
  394. DROP TABLE t1;
  395. CREATE TABLE t1 (
  396.   i int(11) default NULL,
  397.   j int(11) default NULL
  398. );
  399. INSERT INTO t1 VALUES (1,2),(2,3),(4,5),(3,5),(1,5),(23,5);
  400. SELECT i, COUNT(DISTINCT(i)) FROM t1 GROUP BY j ORDER BY NULL;
  401. explain SELECT i, COUNT(DISTINCT(i)) FROM t1 GROUP BY j ORDER BY NULL;
  402. DROP TABLE t1;
  403. #Test for BUG#6976: Aggregate functions have incorrect NULL-ness
  404. create table t1 (a int);
  405. insert into t1 values(null);
  406. select min(a) is null from t1;
  407. select min(a) is null or null from t1;
  408. select 1 and min(a) is null from t1;
  409. drop table t1;
  410. # Test for BUG#5400: GROUP_CONCAT returns everything twice.
  411. create table t1 ( col1 int, col2 int );
  412. insert into t1 values (1,1),(1,2),(1,3),(2,1),(2,2);
  413. select group_concat( distinct col1 ) as alias from t1
  414.   group by col2 having alias like '%';
  415. drop table t1;
  416. #
  417. # Test BUG#8216 when referring in HAVING to n alias which is rand() function
  418. #
  419. create table t1 (a integer, b integer, c integer);
  420. insert into t1 (a,b) values (1,2),(1,3),(2,5);
  421. select a, 0.1*0+1 r2, sum(1) r1 from t1 where a = 1 group  by a having r1>1 and r2=1;
  422. # rand(100)*10 will be < 2 only for the first row (of 6)
  423. select a, round(rand(100)*10) r2, sum(1) r1 from t1 where a = 1 group  by a having r1>1 and r2<=2;
  424. select a,sum(b) from t1 where a=1 group by c;
  425. select a*sum(b) from t1 where a=1 group by c;
  426. select sum(a)*sum(b) from t1 where a=1 group by c;
  427. select a,sum(b) from t1 where a=1 group by c having a=1;
  428. select a as d,sum(b) from t1 where a=1 group by c having d=1;
  429. select sum(a)*sum(b) as d from t1 where a=1 group by c having d > 0;
  430. drop table t1;
  431. # Test for BUG#9213 GROUP BY query on utf-8 key returns wrong results
  432. create table t1(a int);
  433. insert into t1 values (0),(1),(2),(3),(4),(5),(6),(8),(9);
  434. create table t2 (
  435.   a int,
  436.   b varchar(200) NOT NULL,
  437.   c varchar(50) NOT NULL,
  438.   d varchar(100) NOT NULL,
  439.   primary key (a,b(132),c,d),
  440.   key a (a,b)
  441. ) charset=utf8;
  442. insert into t2 select 
  443.    x3.a,  -- 3
  444.    concat('val-', x3.a + 3*x4.a), -- 12
  445.    concat('val-', @a:=x3.a + 3*x4.a + 12*C.a), -- 120
  446.    concat('val-', @a + 120*D.a)
  447. from t1 x3, t1 x4, t1 C, t1 D where x3.a < 3 and x4.a < 4 and D.a < 4;
  448. delete from t2  where a = 2 and b = 'val-2' order by a,b,c,d limit 30;
  449. explain select c from t2 where a = 2 and b = 'val-2' group by c;
  450. select c from t2 where a = 2 and b = 'val-2' group by c;
  451. drop table t1,t2;
  452. # Test for BUG#9298 "Wrong handling of int4 unsigned columns in GROUP functions"
  453. # (the actual problem was with protocol code, not GROUP BY)
  454. create table t1 (b int4 unsigned not null);
  455. insert into t1 values(3000000000);
  456. select * from t1;
  457. select min(b) from t1;
  458. drop table t1;
  459. #
  460. # Test for bug #11088: GROUP BY a BLOB column with COUNT(DISTINCT column1) 
  461. #
  462. CREATE TABLE t1 (id int PRIMARY KEY, user_id int, hostname longtext);
  463. INSERT INTO t1 VALUES
  464.   (1, 7, 'cache-dtc-af05.proxy.aol.com'),
  465.   (2, 3, 'what.ever.com'),
  466.   (3, 7, 'cache-dtc-af05.proxy.aol.com'),
  467.   (4, 7, 'cache-dtc-af05.proxy.aol.com');
  468. SELECT hostname, COUNT(DISTINCT user_id) as no FROM t1
  469.   WHERE hostname LIKE '%aol%'
  470.     GROUP BY hostname;
  471. DROP TABLE t1;
  472. #
  473. # Test for bug #8614: GROUP BY 'const' with DISTINCT  
  474. #
  475. CREATE TABLE t1 (a  int, b int);
  476. INSERT INTO t1 VALUES (1,2), (1,3);
  477. SELECT a, b FROM t1 GROUP BY 'const';
  478. SELECT DISTINCT a, b FROM t1 GROUP BY 'const';
  479. DROP TABLE t1;
  480. #
  481. # Test for bug #11385: GROUP BY for datetime converted to decimals  
  482. #
  483. CREATE TABLE t1 (id INT, dt DATETIME);
  484. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  485. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  486. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  487. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  488. SELECT dt DIV 1 AS f, id FROM t1 GROUP BY f;
  489. DROP TABLE t1;
  490. #
  491. # Test for bug #11295: GROUP BY a BLOB column with COUNT(DISTINCT column1) 
  492. #                      when the BLOB column takes NULL values
  493. CREATE TABLE t1 (id varchar(20) NOT NULL);
  494. INSERT INTO t1 VALUES ('trans1'), ('trans2');
  495. CREATE TABLE t2 (id varchar(20) NOT NULL, err_comment blob NOT NULL);
  496. INSERT INTO t2 VALUES ('trans1', 'a problem');
  497. SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS err_comment
  498.   FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY err_comment;
  499. DROP TABLE t1, t2;
  500. #
  501. # Test for bug #11414: crash on Windows for a simple GROUP BY query 
  502. #  
  503.                     
  504. CREATE TABLE t1 (n int);
  505. INSERT INTO t1 VALUES (1);
  506. SELECT n+1 AS n FROM t1 GROUP BY n;
  507. DROP TABLE t1;
  508. #
  509. # Bug #12266 GROUP BY expression on DATE column produces result with
  510. #            reduced length
  511. #
  512. create table t1 (f1 date);
  513. insert into t1 values('2005-06-06');
  514. insert into t1 values('2005-06-06'); 
  515. select date(left(f1+0,8)) from t1 group by 1;
  516. drop table t1;
  517. #
  518. # BUG#12695: Item_func_isnull::update_used_tables
  519. # did not update const_item_cache
  520. #
  521. create table t1(f1 varchar(5) key);
  522. insert into t1 values (1),(2);
  523. select sql_buffer_result max(f1) is null from t1;
  524. select sql_buffer_result max(f1)+1 from t1;
  525. drop table t1;
  526. # End of 4.1 tests