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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3;
  2. SELECT 1 FROM (SELECT 1) as a  GROUP BY SUM(1);
  3. ERROR HY000: Invalid use of group function
  4. CREATE TABLE t1 (
  5. spID int(10) unsigned,
  6. userID int(10) unsigned,
  7. score smallint(5) unsigned,
  8. lsg char(40),
  9. date date
  10. );
  11. INSERT INTO t1 VALUES (1,1,1,'','0000-00-00');
  12. INSERT INTO t1 VALUES (2,2,2,'','0000-00-00');
  13. INSERT INTO t1 VALUES (2,1,1,'','0000-00-00');
  14. INSERT INTO t1 VALUES (3,3,3,'','0000-00-00');
  15. CREATE TABLE t2 (
  16. userID int(10) unsigned NOT NULL auto_increment,
  17. niName char(15),
  18. passwd char(8),
  19. mail char(50),
  20. isAukt enum('N','Y') DEFAULT 'N',
  21. vName char(30),
  22. nName char(40),
  23. adr char(60),
  24. plz char(5),
  25. ort char(35),
  26. land char(20),
  27. PRIMARY KEY (userID)
  28. );
  29. INSERT INTO t2 VALUES (1,'name','pass','mail','Y','v','n','adr','1','1','1');
  30. INSERT INTO t2 VALUES (2,'name','pass','mail','Y','v','n','adr','1','1','1');
  31. INSERT INTO t2 VALUES (3,'name','pass','mail','Y','v','n','adr','1','1','1');
  32. INSERT INTO t2 VALUES (4,'name','pass','mail','Y','v','n','adr','1','1','1');
  33. INSERT INTO t2 VALUES (5,'name','pass','mail','Y','v','n','adr','1','1','1');
  34. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID GROUP BY t2.userid;
  35. userid MIN(t1.score)
  36. 1 1
  37. 2 2
  38. 3 3
  39. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID GROUP BY t2.userid ORDER BY NULL;
  40. userid MIN(t1.score)
  41. 1 1
  42. 2 2
  43. 3 3
  44. SELECT t2.userid, MIN(t1.score) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid;
  45. userid MIN(t1.score)
  46. 1 1
  47. 2 2
  48. SELECT t2.userid, MIN(t1.score+0.0) FROM t1, t2 WHERE t1.userID=t2.userID AND t1.spID=2  GROUP BY t2.userid;
  49. userid MIN(t1.score+0.0)
  50. 1 1.0
  51. 2 2.0
  52. 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;
  53. userid MIN(t1.score+0.0)
  54. 2 2.0
  55. 1 1.0
  56. 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;
  57. id select_type table type possible_keys key key_len ref rows Extra
  58. 1 SIMPLE t1 ALL NULL NULL NULL NULL 4 Using where; Using temporary
  59. 1 SIMPLE t2 eq_ref PRIMARY PRIMARY 4 test.t1.userID 1 Using index
  60. drop table t1,t2;
  61. CREATE TABLE t1 (
  62. PID int(10) unsigned NOT NULL auto_increment,
  63. payDate date DEFAULT '0000-00-00' NOT NULL,
  64. recDate datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  65. URID int(10) unsigned DEFAULT '0' NOT NULL,
  66. CRID int(10) unsigned DEFAULT '0' NOT NULL,
  67. amount int(10) unsigned DEFAULT '0' NOT NULL,
  68. operator int(10) unsigned,
  69. method enum('unknown','cash','dealer','check','card','lazy','delayed','test') DEFAULT 'unknown' NOT NULL,
  70. DIID int(10) unsigned,
  71. reason char(1) binary DEFAULT '' NOT NULL,
  72. code_id int(10) unsigned,
  73. qty mediumint(8) unsigned DEFAULT '0' NOT NULL,
  74. PRIMARY KEY (PID),
  75. KEY URID (URID),
  76. KEY reason (reason),
  77. KEY method (method),
  78. KEY payDate (payDate)
  79. );
  80. INSERT INTO t1 VALUES (1,'1970-01-01','1997-10-17 00:00:00',2529,1,21000,11886,'check',0,'F',16200,6);
  81. 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;
  82. ERROR 42000: Can't group on 'IsNew'
  83. drop table t1;
  84. CREATE TABLE t1 (
  85. cid mediumint(9) NOT NULL auto_increment,
  86. firstname varchar(32) DEFAULT '' NOT NULL,
  87. surname varchar(32) DEFAULT '' NOT NULL,
  88. PRIMARY KEY (cid)
  89. );
  90. INSERT INTO t1 VALUES (1,'That','Guy');
  91. INSERT INTO t1 VALUES (2,'Another','Gent');
  92. CREATE TABLE t2 (
  93. call_id mediumint(8) NOT NULL auto_increment,
  94. contact_id mediumint(8) DEFAULT '0' NOT NULL,
  95. PRIMARY KEY (call_id),
  96. KEY contact_id (contact_id)
  97. );
  98. lock tables t1 read,t2 write;
  99. INSERT INTO t2 VALUES (10,2);
  100. INSERT INTO t2 VALUES (18,2);
  101. INSERT INTO t2 VALUES (62,2);
  102. INSERT INTO t2 VALUES (91,2);
  103. INSERT INTO t2 VALUES (92,2);
  104. SELECT cid, CONCAT(firstname, ' ', surname), COUNT(call_id) FROM t1 LEFT JOIN t2 ON cid=contact_id WHERE firstname like '%foo%' GROUP BY cid;
  105. cid CONCAT(firstname, ' ', surname) COUNT(call_id)
  106. 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;
  107. cid CONCAT(firstname, ' ', surname) COUNT(call_id)
  108. 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;
  109. cid CONCAT(firstname, ' ', surname) COUNT(call_id)
  110. drop table t1,t2;
  111. unlock tables;
  112. CREATE TABLE t1 (
  113. bug_id mediumint(9) NOT NULL auto_increment,
  114. groupset bigint(20) DEFAULT '0' NOT NULL,
  115. assigned_to mediumint(9) DEFAULT '0' NOT NULL,
  116. bug_file_loc text,
  117. bug_severity enum('blocker','critical','major','normal','minor','trivial','enhancement') DEFAULT 'blocker' NOT NULL,
  118. bug_status enum('','NEW','ASSIGNED','REOPENED','RESOLVED','VERIFIED','CLOSED') DEFAULT 'NEW' NOT NULL,
  119. creation_ts datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  120. delta_ts timestamp(14),
  121. short_desc mediumtext,
  122. long_desc mediumtext,
  123. op_sys enum('All','Windows 3.1','Windows 95','Windows 98','Windows NT','Windows 2000','Linux','other') DEFAULT 'All' NOT NULL,
  124. priority enum('P1','P2','P3','P4','P5') DEFAULT 'P1' NOT NULL,
  125. product varchar(64) DEFAULT '' NOT NULL,
  126. rep_platform enum('All','PC','VTD-8','Other'),
  127. reporter mediumint(9) DEFAULT '0' NOT NULL,
  128. version varchar(16) DEFAULT '' NOT NULL,
  129. component varchar(50) DEFAULT '' NOT NULL,
  130. resolution enum('','FIXED','INVALID','WONTFIX','LATER','REMIND','DUPLICATE','WORKSFORME') DEFAULT '' NOT NULL,
  131. target_milestone varchar(20) DEFAULT '' NOT NULL,
  132. qa_contact mediumint(9) DEFAULT '0' NOT NULL,
  133. status_whiteboard mediumtext NOT NULL,
  134. votes mediumint(9) DEFAULT '0' NOT NULL,
  135. PRIMARY KEY (bug_id),
  136. KEY assigned_to (assigned_to),
  137. KEY creation_ts (creation_ts),
  138. KEY delta_ts (delta_ts),
  139. KEY bug_severity (bug_severity),
  140. KEY bug_status (bug_status),
  141. KEY op_sys (op_sys),
  142. KEY priority (priority),
  143. KEY product (product),
  144. KEY reporter (reporter),
  145. KEY version (version),
  146. KEY component (component),
  147. KEY resolution (resolution),
  148. KEY target_milestone (target_milestone),
  149. KEY qa_contact (qa_contact),
  150. KEY votes (votes)
  151. );
  152. 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);
  153. 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);
  154. 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);
  155. 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);
  156. 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);
  157. 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);
  158. 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);
  159. INSERT INTO t1 VALUES (4,0,0,'','normal','','2000-03-08 18:32:14',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent2','','',0,'',0);
  160. INSERT INTO t1 VALUES (3,0,0,'','normal','','2000-03-08 18:30:52',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent','','',0,'',0);
  161. INSERT INTO t1 VALUES (2,0,0,'','enhancement','','2000-03-08 18:24:51',20000321114747,'','','All','P2','TestProduct','Other',4,'other','TestComponent2','','',0,'',0);
  162. 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);
  163. 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);
  164. INSERT INTO t1 VALUES (13,0,0,'','normal','','2000-03-15 16:20:44',20000321114747,'','','other','P2','TestProduct','Other',3,'other','TestComponent','','',0,'',0);
  165. 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);
  166. 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);
  167. 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);
  168. 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);
  169. 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);
  170. 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);
  171. 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);
  172. 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);
  173. 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);
  174. 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);
  175. 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);
  176. 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);
  177. 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);
  178. 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);
  179. 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);
  180. 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);
  181. CREATE TABLE t2 (
  182. value tinytext,
  183. program varchar(64),
  184. initialowner tinytext NOT NULL,
  185. initialqacontact tinytext NOT NULL,
  186. description mediumtext NOT NULL
  187. );
  188. INSERT INTO t2 VALUES ('TestComponent','TestProduct','id0001','','');
  189. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - conversion','AAAAA','id0001','','');
  190. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - generic','AAAAA','id0001','','');
  191. INSERT INTO t2 VALUES ('TestComponent2','TestProduct','id0001','','');
  192. INSERT INTO t2 VALUES ('BBBBBBBBBBBBB - eeeeeeeee','AAAAA','id0001','','');
  193. INSERT INTO t2 VALUES ('kkkkkkkkkkk lllllllllll','AAAAA','id0001','','');
  194. INSERT INTO t2 VALUES ('Test Procedures','AAAAA','id0001','','');
  195. INSERT INTO t2 VALUES ('Documentation','AAAAA','id0003','','');
  196. INSERT INTO t2 VALUES ('DDDDDDDDD','CCC/CCCCCC','id0002','','');
  197. INSERT INTO t2 VALUES ('Eeeeeeee Lite','CCC/CCCCCC','id0002','','');
  198. INSERT INTO t2 VALUES ('Eeeeeeee Full','CCC/CCCCCC','id0002','','');
  199. INSERT INTO t2 VALUES ('Administration','CCC/CCCCCC','id0002','','');
  200. INSERT INTO t2 VALUES ('Distribution','CCC/CCCCCC','id0002','','');
  201. INSERT INTO t2 VALUES ('Setup','CCC/CCCCCC','id0002','','');
  202. INSERT INTO t2 VALUES ('Unspecified','CCC/CCCCCC','id0002','','');
  203. INSERT INTO t2 VALUES ('Web Interface','AAAAAAAA-AAA','id0001','','');
  204. INSERT INTO t2 VALUES ('Host communication','AAAAA','id0001','','');
  205. select value,description,bug_id from t2 left join t1 on t2.program=t1.product and t2.value=t1.component where program="AAAAA";
  206. value description bug_id
  207. BBBBBBBBBBBBB - conversion 9
  208. BBBBBBBBBBBBB - conversion 10
  209. BBBBBBBBBBBBB - generic 7
  210. BBBBBBBBBBBBB - generic 14
  211. BBBBBBBBBBBBB - eeeeeeeee NULL
  212. kkkkkkkkkkk lllllllllll 6
  213. kkkkkkkkkkk lllllllllll 8
  214. kkkkkkkkkkk lllllllllll 12
  215. Test Procedures NULL
  216. Documentation NULL
  217. Host communication NULL
  218. 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;
  219. value description COUNT(bug_id)
  220. BBBBBBBBBBBBB - conversion 2
  221. BBBBBBBBBBBBB - eeeeeeeee 0
  222. BBBBBBBBBBBBB - generic 2
  223. Documentation 0
  224. Host communication 0
  225. kkkkkkkkkkk lllllllllll 3
  226. Test Procedures 0
  227. 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);
  228. value description COUNT(bug_id)
  229. BBBBBBBBBBBBB - conversion 2
  230. BBBBBBBBBBBBB - eeeeeeeee 0
  231. BBBBBBBBBBBBB - generic 2
  232. Documentation 0
  233. Host communication 0
  234. Test Procedures 0
  235. drop table t1,t2;
  236. create table t1 (foo int);
  237. insert into t1 values (1);
  238. select 1+1, "a",count(*) from t1 where foo in (2);
  239. 1+1 a count(*)
  240. 2 a 0
  241. insert into t1 values (1);
  242. select 1+1,"a",count(*) from t1 where foo in (2);
  243. 1+1 a count(*)
  244. 2 a 0
  245. drop table t1;
  246. CREATE TABLE t1 (
  247. spID int(10) unsigned,
  248. userID int(10) unsigned,
  249. score smallint(5) unsigned,
  250. key (spid),
  251. key (score)
  252. );
  253. 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);
  254. explain select userid,count(*) from t1 group by userid desc;
  255. id select_type table type possible_keys key key_len ref rows Extra
  256. 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 Using temporary; Using filesort
  257. explain select userid,count(*) from t1 group by userid desc order by null;
  258. id select_type table type possible_keys key key_len ref rows Extra
  259. 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 Using temporary
  260. select userid,count(*) from t1 group by userid desc;
  261. userid count(*)
  262. 3 5
  263. 2 1
  264. 1 2
  265. select userid,count(*) from t1 group by userid desc having (count(*)+1) IN (4,3);
  266. userid count(*)
  267. 1 2
  268. select userid,count(*) from t1 group by userid desc having 3  IN (1,COUNT(*));
  269. userid count(*)
  270. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid desc;
  271. id select_type table type possible_keys key key_len ref rows Extra
  272. 1 SIMPLE t1 range spID spID 5 NULL 3 Using where; Using index
  273. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid;
  274. id select_type table type possible_keys key key_len ref rows Extra
  275. 1 SIMPLE t1 range spID spID 5 NULL 3 Using where; Using index
  276. explain select spid,count(*) from t1 where spid between 1 and 2 group by spid order by null;
  277. id select_type table type possible_keys key key_len ref rows Extra
  278. 1 SIMPLE t1 range spID spID 5 NULL 3 Using where; Using index
  279. select spid,count(*) from t1 where spid between 1 and 2 group by spid;
  280. spid count(*)
  281. 1 1
  282. 2 2
  283. select spid,count(*) from t1 where spid between 1 and 2 group by spid desc;
  284. spid count(*)
  285. 2 2
  286. 1 1
  287. explain extended select sql_big_result spid,sum(userid) from t1 group by spid desc;
  288. id select_type table type possible_keys key key_len ref rows Extra
  289. 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 Using filesort
  290. Warnings:
  291. Note 1003 select sql_big_result test.t1.spID AS `spid`,sum(test.t1.userID) AS `sum(userid)` from test.t1 group by test.t1.spID desc
  292. explain select sql_big_result spid,sum(userid) from t1 group by spid desc order by null;
  293. id select_type table type possible_keys key key_len ref rows Extra
  294. 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 Using filesort
  295. select sql_big_result spid,sum(userid) from t1 group by spid desc;
  296. spid sum(userid)
  297. 7 3
  298. 6 3
  299. 5 3
  300. 4 3
  301. 3 3
  302. 2 3
  303. 1 1
  304. explain select sql_big_result score,count(*) from t1 group by score desc;
  305. id select_type table type possible_keys key key_len ref rows Extra
  306. 1 SIMPLE t1 index NULL score 3 NULL 8 Using index
  307. explain select sql_big_result score,count(*) from t1 group by score desc order by null;
  308. id select_type table type possible_keys key key_len ref rows Extra
  309. 1 SIMPLE t1 index NULL score 3 NULL 8 Using index
  310. select sql_big_result score,count(*) from t1 group by score desc;
  311. score count(*)
  312. 3 5
  313. 2 1
  314. 1 2
  315. drop table t1;
  316. create table t1 (a date default null, b date default null);
  317. insert t1 values ('1999-10-01','2000-01-10'), ('1997-01-01','1998-10-01');
  318. select a,min(b) c,count(distinct rand()) from t1 group by a having c<a + interval 1 day;
  319. a c count(distinct rand())
  320. drop table t1;
  321. CREATE TABLE t1 (a char(1));
  322. INSERT INTO t1 VALUES ('A'),('B'),('A'),('B'),('A'),('B'),(NULL),('a'),('b'),(NULL),('A'),('B'),(NULL);
  323. SELECT a FROM t1 GROUP BY a;
  324. a
  325. NULL
  326. A
  327. B
  328. SELECT a,count(*) FROM t1 GROUP BY a;
  329. a count(*)
  330. NULL 3
  331. A 5
  332. B 5
  333. SELECT a FROM t1 GROUP BY binary a;
  334. a
  335. NULL
  336. A
  337. B
  338. a
  339. b
  340. SELECT a,count(*) FROM t1 GROUP BY binary a;
  341. a count(*)
  342. NULL 3
  343. A 4
  344. B 4
  345. a 1
  346. b 1
  347. SELECT binary a FROM t1 GROUP BY 1;
  348. binary a
  349. NULL
  350. A
  351. B
  352. a
  353. b
  354. SELECT binary a,count(*) FROM t1 GROUP BY 1;
  355. binary a count(*)
  356. NULL 3
  357. A 4
  358. B 4
  359. a 1
  360. b 1
  361. SET SQL_BIG_TABLES=1;
  362. SELECT a FROM t1 GROUP BY a;
  363. a
  364. NULL
  365. A
  366. B
  367. SELECT a,count(*) FROM t1 GROUP BY a;
  368. a count(*)
  369. NULL 3
  370. A 5
  371. B 5
  372. SELECT a FROM t1 GROUP BY binary a;
  373. a
  374. NULL
  375. A
  376. B
  377. a
  378. b
  379. SELECT a,count(*) FROM t1 GROUP BY binary a;
  380. a count(*)
  381. NULL 3
  382. A 4
  383. B 4
  384. a 1
  385. b 1
  386. SELECT binary a FROM t1 GROUP BY 1;
  387. binary a
  388. NULL
  389. A
  390. B
  391. a
  392. b
  393. SELECT binary a,count(*) FROM t1 GROUP BY 1;
  394. binary a count(*)
  395. NULL 3
  396. A 4
  397. B 4
  398. a 1
  399. b 1
  400. SET SQL_BIG_TABLES=0;
  401. drop table t1;
  402. CREATE TABLE t1 (
  403. `a` char(193) default NULL,
  404. `b` char(63) default NULL
  405. );
  406. INSERT INTO t1 VALUES ('abc','def'),('hij','klm');
  407. SELECT CONCAT(a, b) FROM t1 GROUP BY 1;
  408. CONCAT(a, b)
  409. abcdef
  410. hijklm
  411. SELECT CONCAT(a, b),count(*) FROM t1 GROUP BY 1;
  412. CONCAT(a, b) count(*)
  413. abcdef 1
  414. hijklm 1
  415. SELECT CONCAT(a, b),count(distinct a) FROM t1 GROUP BY 1;
  416. CONCAT(a, b) count(distinct a)
  417. abcdef 1
  418. hijklm 1
  419. SELECT 1 FROM t1 GROUP BY CONCAT(a, b);
  420. 1
  421. 1
  422. 1
  423. INSERT INTO t1 values ('hij','klm');
  424. SELECT CONCAT(a, b),count(*) FROM t1 GROUP BY 1;
  425. CONCAT(a, b) count(*)
  426. abcdef 1
  427. hijklm 2
  428. DROP TABLE t1;
  429. create table t1 (One int unsigned, Two int unsigned, Three int unsigned, Four int unsigned);
  430. 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);
  431. select One, Two, sum(Four) from t1 group by One,Two;
  432. One Two sum(Four)
  433. 1 1 16
  434. 1 2 16
  435. 1 3 16
  436. drop table t1;
  437. create table t1 (id integer primary key not null auto_increment, gender char(1));
  438. insert into t1 values (NULL, 'M'), (NULL, 'F'),(NULL, 'F'),(NULL, 'F'),(NULL, 'M');
  439. create table t2 (user_id integer not null, date date);
  440. 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');
  441. 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;
  442. gender dist_count percentage
  443. F 3 60.00
  444. M 1 20.00
  445. 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;
  446. gender dist_count percentage
  447. M 1 20.00
  448. F 3 60.00
  449. drop table t1,t2;
  450. CREATE TABLE t1 (ID1 int, ID2 int, ID int NOT NULL AUTO_INCREMENT,PRIMARY KEY(ID
  451. ));
  452. insert into t1 values (1,244,NULL),(2,243,NULL),(134,223,NULL),(185,186,NULL);
  453. 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;
  454. xID xID1
  455. 1 1
  456. 2 2
  457. 2 2
  458. 3 134
  459. 3 134
  460. 3 134
  461. 4 185
  462. 4 185
  463. 4 185
  464. 4 185
  465. 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;
  466. xID xID1 Level
  467. 1 1 *
  468. 2 2 **
  469. 3 134 ***
  470. 4 185 ****
  471. drop table t1;
  472. CREATE TABLE t1 (
  473. pid int(11) unsigned NOT NULL default '0',
  474. c1id int(11) unsigned default NULL,
  475. c2id int(11) unsigned default NULL,
  476. value int(11) unsigned NOT NULL default '0',
  477. UNIQUE KEY pid2 (pid,c1id,c2id),
  478. UNIQUE KEY pid (pid,value)
  479. ) ENGINE=MyISAM;
  480. INSERT INTO t1 VALUES (1, 1, NULL, 1),(1, 2, NULL, 2),(1, NULL, 3, 3),(1, 4, NULL, 4),(1, 5, NULL, 5);
  481. CREATE TABLE t2 (
  482. id int(11) unsigned NOT NULL default '0',
  483. active enum('Yes','No') NOT NULL default 'Yes',
  484. PRIMARY KEY  (id)
  485. ) ENGINE=MyISAM;
  486. INSERT INTO t2 VALUES (1, 'Yes'),(2, 'No'),(4, 'Yes'),(5, 'No');
  487. CREATE TABLE t3 (
  488. id int(11) unsigned NOT NULL default '0',
  489. active enum('Yes','No') NOT NULL default 'Yes',
  490. PRIMARY KEY  (id)
  491. );
  492. INSERT INTO t3 VALUES (3, 'Yes');
  493. select * from t1 AS m LEFT JOIN t2 AS c1 ON m.c1id = 
  494. c1.id AND c1.active = 'Yes' LEFT JOIN t3 AS c2 ON m.c2id = c2.id AND 
  495. c2.active = 'Yes' WHERE m.pid=1  AND (c1.id IS NOT NULL OR c2.id IS NOT NULL);
  496. pid c1id c2id value id active id active
  497. 1 1 NULL 1 1 Yes NULL NULL
  498. 1 NULL 3 3 NULL NULL 3 Yes
  499. 1 4 NULL 4 4 Yes NULL NULL
  500. select max(value) from t1 AS m LEFT JOIN t2 AS c1 ON 
  501. m.c1id = c1.id AND c1.active = 'Yes' LEFT JOIN t3 AS c2 ON m.c2id = 
  502. c2.id AND c2.active = 'Yes' WHERE m.pid=1  AND (c1.id IS NOT NULL OR c2.id IS 
  503. NOT NULL);
  504. max(value)
  505. 4
  506. drop table t1,t2,t3;
  507. create table t1 (a blob null);
  508. insert into t1 values (NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL),(""),(""),(""),("b");
  509. select a,count(*) from t1 group by a;
  510. a count(*)
  511. NULL 9
  512. 3
  513. b 1
  514. set option sql_big_tables=1;
  515. select a,count(*) from t1 group by a;
  516. a count(*)
  517. NULL 9
  518. 3
  519. b 1
  520. drop table t1;
  521. create table t1 (a int not null, b int not null);
  522. insert into t1 values (1,1),(1,2),(3,1),(3,2),(2,2),(2,1);
  523. create table t2 (a int not null, b int not null, key(a));
  524. insert into t2 values (1,3),(3,1),(2,2),(1,1);
  525. select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b;
  526. a b
  527. 1 1
  528. 1 3
  529. 2 2
  530. 3 1
  531. select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b ORDER BY NULL;
  532. a b
  533. 1 3
  534. 3 1
  535. 2 2
  536. 1 1
  537. explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b;
  538. id select_type table type possible_keys key key_len ref rows Extra
  539. 1 SIMPLE t1 ALL NULL NULL NULL NULL 6 Using temporary; Using filesort
  540. 1 SIMPLE t2 ALL a NULL NULL NULL 3 Using where
  541. explain select t1.a,t2.b from t1,t2 where t1.a=t2.a group by t1.a,t2.b ORDER BY NULL;
  542. id select_type table type possible_keys key key_len ref rows Extra
  543. 1 SIMPLE t1 ALL NULL NULL NULL NULL 6 Using temporary
  544. 1 SIMPLE t2 ALL a NULL NULL NULL 3 Using where
  545. drop table t1,t2;
  546. create table t1 (a int, b int);
  547. insert into t1 values (1, 4),(10, 40),(1, 4),(10, 43),(1, 4),(10, 41),(1, 4),(10, 43),(1, 4);
  548. select a, MAX(b), INTERVAL (MAX(b), 1,3,10,30,39,40,50,60,100,1000) from t1 group by a;
  549. a MAX(b) INTERVAL (MAX(b), 1,3,10,30,39,40,50,60,100,1000)
  550. 1 4 2
  551. 10 43 6
  552. select a, MAX(b), CASE MAX(b) when 4 then 4 when 43 then 43 else 0 end from t1 group by a;
  553. a MAX(b) CASE MAX(b) when 4 then 4 when 43 then 43 else 0 end
  554. 1 4 4
  555. 10 43 43
  556. select a, MAX(b), FIELD(MAX(b), '43', '4', '5') from t1 group by a;
  557. a MAX(b) FIELD(MAX(b), '43', '4', '5')
  558. 1 4 2
  559. 10 43 1
  560. select a, MAX(b), CONCAT_WS(MAX(b), '43', '4', '5') from t1 group by a;
  561. a MAX(b) CONCAT_WS(MAX(b), '43', '4', '5')
  562. 1 4 434445
  563. 10 43 43434435
  564. select a, MAX(b), ELT(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f') from t1 group by a;
  565. a MAX(b) ELT(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f')
  566. 1 4 d
  567. 10 43 NULL
  568. select a, MAX(b), MAKE_SET(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h') from t1 group by a;
  569. a MAX(b) MAKE_SET(MAX(b), 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
  570. 1 4 c
  571. 10 43 a,b,d,f
  572. drop table t1;
  573. create table t1 (id int not null, qty int not null);
  574. insert into t1 values (1,2),(1,3),(2,4),(2,5);
  575. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sum(qty)>2 and cqty>1;
  576. id sqty cqty
  577. 1 5 2
  578. 2 9 2
  579. select id, sum(qty) as sqty from t1 group by id having sqty>2 and count(qty)>1;
  580. id sqty
  581. 1 5
  582. 2 9
  583. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sqty>2 and cqty>1;
  584. id sqty cqty
  585. 1 5 2
  586. 2 9 2
  587. select id, sum(qty) as sqty, count(qty) as cqty from t1 group by id having sum(qty)>2 and count(qty)>1;
  588. id sqty cqty
  589. 1 5 2
  590. 2 9 2
  591. 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;
  592. count(*) category
  593. 2 NULL
  594. 1 one
  595. 1 two
  596. select count(*), interval(qty,2,3,4,5,6,7,8) as category from t1 group by category;
  597. count(*) category
  598. 1 1
  599. 1 2
  600. 1 3
  601. 1 4
  602. drop table t1;
  603. CREATE TABLE t1 (
  604. userid int(10) unsigned,
  605. score smallint(5) unsigned,
  606. key (score)
  607. );
  608. INSERT INTO t1 VALUES (1,1),(2,2),(1,1),(3,3),(3,3),(3,3),(3,3),(3,3);
  609. SELECT userid,count(*) FROM t1 GROUP BY userid DESC;
  610. userid count(*)
  611. 3 5
  612. 2 1
  613. 1 2
  614. EXPLAIN SELECT userid,count(*) FROM t1 GROUP BY userid DESC;
  615. id select_type table type possible_keys key key_len ref rows Extra
  616. 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 Using temporary; Using filesort
  617. DROP TABLE t1;
  618. CREATE TABLE t1 (
  619. i int(11) default NULL,
  620. j int(11) default NULL
  621. );
  622. INSERT INTO t1 VALUES (1,2),(2,3),(4,5),(3,5),(1,5),(23,5);
  623. SELECT i, COUNT(DISTINCT(i)) FROM t1 GROUP BY j ORDER BY NULL;
  624. i COUNT(DISTINCT(i))
  625. 1 1
  626. 2 1
  627. 4 4
  628. explain SELECT i, COUNT(DISTINCT(i)) FROM t1 GROUP BY j ORDER BY NULL;
  629. id select_type table type possible_keys key key_len ref rows Extra
  630. 1 SIMPLE t1 ALL NULL NULL NULL NULL 6 Using filesort
  631. DROP TABLE t1;
  632. create table t1 (a int);
  633. insert into t1 values(null);
  634. select min(a) is null from t1;
  635. min(a) is null
  636. 1
  637. select min(a) is null or null from t1;
  638. min(a) is null or null
  639. 1
  640. select 1 and min(a) is null from t1;
  641. 1 and min(a) is null
  642. 1
  643. drop table t1;
  644. create table t1 ( col1 int, col2 int );
  645. insert into t1 values (1,1),(1,2),(1,3),(2,1),(2,2);
  646. select group_concat( distinct col1 ) as alias from t1
  647. group by col2 having alias like '%';
  648. alias
  649. 1,2
  650. 1,2
  651. 1
  652. drop table t1;
  653. create table t1 (a integer, b integer, c integer);
  654. insert into t1 (a,b) values (1,2),(1,3),(2,5);
  655. select a, 0.1*0+1 r2, sum(1) r1 from t1 where a = 1 group  by a having r1>1 and r2=1;
  656. a r2 r1
  657. 1 1.0 2
  658. select a, round(rand(100)*10) r2, sum(1) r1 from t1 where a = 1 group  by a having r1>1 and r2<=2;
  659. a r2 r1
  660. 1 2 2
  661. select a,sum(b) from t1 where a=1 group by c;
  662. a sum(b)
  663. 1 5
  664. select a*sum(b) from t1 where a=1 group by c;
  665. a*sum(b)
  666. 5
  667. select sum(a)*sum(b) from t1 where a=1 group by c;
  668. sum(a)*sum(b)
  669. 10
  670. select a,sum(b) from t1 where a=1 group by c having a=1;
  671. a sum(b)
  672. 1 5
  673. select a as d,sum(b) from t1 where a=1 group by c having d=1;
  674. d sum(b)
  675. 1 5
  676. select sum(a)*sum(b) as d from t1 where a=1 group by c having d > 0;
  677. d
  678. 10
  679. drop table t1;
  680. create table t1(a int);
  681. insert into t1 values (0),(1),(2),(3),(4),(5),(6),(8),(9);
  682. create table t2 (
  683. a int,
  684. b varchar(200) NOT NULL,
  685. c varchar(50) NOT NULL,
  686. d varchar(100) NOT NULL,
  687. primary key (a,b(132),c,d),
  688. key a (a,b)
  689. ) charset=utf8;
  690. insert into t2 select 
  691. x3.a,  -- 3
  692. concat('val-', x3.a + 3*x4.a), -- 12
  693. concat('val-', @a:=x3.a + 3*x4.a + 12*C.a), -- 120
  694. concat('val-', @a + 120*D.a)
  695. from t1 x3, t1 x4, t1 C, t1 D where x3.a < 3 and x4.a < 4 and D.a < 4;
  696. delete from t2  where a = 2 and b = 'val-2' order by a,b,c,d limit 30;
  697. explain select c from t2 where a = 2 and b = 'val-2' group by c;
  698. id select_type table type possible_keys key key_len ref rows Extra
  699. 1 SIMPLE t2 ref PRIMARY,a PRIMARY 400 const,const 6 Using where
  700. select c from t2 where a = 2 and b = 'val-2' group by c;
  701. c
  702. val-74
  703. val-98
  704. drop table t1,t2;
  705. create table t1 (b int4 unsigned not null);
  706. insert into t1 values(3000000000);
  707. select * from t1;
  708. b
  709. 3000000000
  710. select min(b) from t1;
  711. min(b)
  712. 3000000000
  713. drop table t1;
  714. CREATE TABLE t1 (id int PRIMARY KEY, user_id int, hostname longtext);
  715. INSERT INTO t1 VALUES
  716. (1, 7, 'cache-dtc-af05.proxy.aol.com'),
  717. (2, 3, 'what.ever.com'),
  718. (3, 7, 'cache-dtc-af05.proxy.aol.com'),
  719. (4, 7, 'cache-dtc-af05.proxy.aol.com');
  720. SELECT hostname, COUNT(DISTINCT user_id) as no FROM t1
  721. WHERE hostname LIKE '%aol%'
  722.     GROUP BY hostname;
  723. hostname no
  724. cache-dtc-af05.proxy.aol.com 1
  725. DROP TABLE t1;
  726. CREATE TABLE t1 (a  int, b int);
  727. INSERT INTO t1 VALUES (1,2), (1,3);
  728. SELECT a, b FROM t1 GROUP BY 'const';
  729. a b
  730. 1 2
  731. SELECT DISTINCT a, b FROM t1 GROUP BY 'const';
  732. a b
  733. 1 2
  734. DROP TABLE t1;
  735. CREATE TABLE t1 (id INT, dt DATETIME);
  736. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  737. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  738. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  739. INSERT INTO t1 VALUES ( 1, '2005-05-01 12:30:00' );
  740. SELECT dt DIV 1 AS f, id FROM t1 GROUP BY f;
  741. f id
  742. 20050501123000 1
  743. DROP TABLE t1;
  744. CREATE TABLE t1 (id varchar(20) NOT NULL);
  745. INSERT INTO t1 VALUES ('trans1'), ('trans2');
  746. CREATE TABLE t2 (id varchar(20) NOT NULL, err_comment blob NOT NULL);
  747. INSERT INTO t2 VALUES ('trans1', 'a problem');
  748. SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS err_comment
  749. FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY err_comment;
  750. COUNT(DISTINCT(t1.id)) err_comment
  751. 1 NULL
  752. 1 a problem
  753. DROP TABLE t1, t2;
  754. CREATE TABLE t1 (n int);
  755. INSERT INTO t1 VALUES (1);
  756. SELECT n+1 AS n FROM t1 GROUP BY n;
  757. n
  758. 2
  759. DROP TABLE t1;
  760. create table t1 (f1 date);
  761. insert into t1 values('2005-06-06');
  762. insert into t1 values('2005-06-06');
  763. select date(left(f1+0,8)) from t1 group by 1;
  764. date(left(f1+0,8))
  765. 2005-06-06
  766. drop table t1;
  767. create table t1(f1 varchar(5) key);
  768. insert into t1 values (1),(2);
  769. select sql_buffer_result max(f1) is null from t1;
  770. max(f1) is null
  771. 0
  772. select sql_buffer_result max(f1)+1 from t1;
  773. max(f1)+1
  774. 3
  775. drop table t1;