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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Bug with distinct and INSERT INTO
  3. # Bug with group by and not used fields
  4. #
  5. --disable_warnings
  6. drop table if exists t1,t2,t3;
  7. --enable_warnings
  8. CREATE TABLE t1 (id int,facility char(20));
  9. CREATE TABLE t2 (facility char(20));
  10. INSERT INTO t1 VALUES (NULL,NULL);
  11. INSERT INTO t1 VALUES (-1,'');
  12. INSERT INTO t1 VALUES (0,'');
  13. INSERT INTO t1 VALUES (1,'/L');
  14. INSERT INTO t1 VALUES (2,'A01');
  15. INSERT INTO t1 VALUES (3,'ANC');
  16. INSERT INTO t1 VALUES (4,'F01');
  17. INSERT INTO t1 VALUES (5,'FBX');
  18. INSERT INTO t1 VALUES (6,'MT');
  19. INSERT INTO t1 VALUES (7,'P');
  20. INSERT INTO t1 VALUES (8,'RV');
  21. INSERT INTO t1 VALUES (9,'SRV');
  22. INSERT INTO t1 VALUES (10,'VMT');
  23. INSERT INTO t2 SELECT DISTINCT FACILITY FROM t1;
  24. select id from t1 group by id;
  25. select * from t1 order by id;
  26. select id-5,facility from t1 order by "id-5";
  27. select id,concat(facility) from t1 group by id ;
  28. select id+0 as a,max(id),concat(facility) as b from t1 group by a order by b desc,a;
  29. select id >= 0 and id <= 5 as grp,count(*) from t1 group by grp;
  30. SELECT DISTINCT FACILITY FROM t1;
  31. SELECT FACILITY FROM t2;
  32. SELECT count(*) from t1,t2 where t1.facility=t2.facility;
  33. select count(facility) from t1;
  34. select count(*) from t1;
  35. select count(*) from t1 where facility IS NULL;
  36. select count(*) from t1 where facility = NULL;
  37. select count(*) from t1 where facility IS NOT NULL;
  38. select count(*) from t1 where id IS NULL;
  39. select count(*) from t1 where id IS NOT NULL;
  40. drop table t1,t2;
  41. #
  42. # Problem with distinct without results
  43. #
  44. CREATE TABLE t1 (UserId int(11) DEFAULT '0' NOT NULL);
  45. INSERT INTO t1 VALUES (20);
  46. INSERT INTO t1 VALUES (27);
  47. SELECT UserId FROM t1 WHERE Userid=22;
  48. SELECT UserId FROM t1 WHERE UserId=22 group by Userid;
  49. SELECT DISTINCT UserId FROM t1 WHERE UserId=22 group by Userid;
  50. SELECT DISTINCT UserId FROM t1 WHERE UserId=22;
  51. drop table t1;
  52. #
  53. # Test of distinct
  54. #
  55. CREATE TABLE t1 (a int(10) unsigned not null primary key,b int(10) unsigned);
  56. INSERT INTO t1 VALUES (1,1),(2,1),(3,1),(4,1);
  57. CREATE TABLE t2 (a int(10) unsigned not null, key (A));
  58. INSERT INTO t2 VALUES (1),(2);
  59. CREATE TABLE t3 (a int(10) unsigned, key(A), b text);
  60. INSERT INTO t3 VALUES (1,'1'),(2,'2');
  61. SELECT DISTINCT t3.b FROM t3,t2,t1 WHERE t3.a=t1.b AND t1.a=t2.a;
  62. INSERT INTO t2 values (1),(2),(3);
  63. INSERT INTO t3 VALUES (1,'1'),(2,'2'),(1,'1'),(2,'2');
  64. explain SELECT distinct t3.a FROM t3,t2,t1 WHERE t3.a=t1.b AND t1.a=t2.a;
  65. SELECT distinct t3.a FROM t3,t2,t1 WHERE t3.a=t1.b AND t1.a=t2.a;
  66. # Create a lot of data into t3;
  67. create temporary table t4 select * from t3;
  68. insert into t3 select * from t4;
  69. insert into t4 select * from t3;
  70. insert into t3 select * from t4;
  71. insert into t4 select * from t3;
  72. insert into t3 select * from t4;
  73. insert into t4 select * from t3;
  74. insert into t3 select * from t4;
  75. explain select distinct t1.a from t1,t3 where t1.a=t3.a;
  76. #flush status;
  77. select distinct t1.a from t1,t3 where t1.a=t3.a;
  78. #show status like 'Handler%';
  79. #flush status;
  80. select distinct 1 from t1,t3 where t1.a=t3.a;
  81. #show status like 'Handler%';
  82. explain SELECT distinct t1.a from t1;
  83. explain SELECT distinct t1.a from t1 order by a desc;
  84. explain SELECT t1.a from t1 group by a order by a desc;
  85. explain SELECT distinct t1.a from t1 order by a desc limit 1;
  86. explain SELECT distinct a from t3 order by a desc limit 2;
  87. explain SELECT distinct a,b from t3 order by a+1;
  88. explain SELECT distinct a,b from t3 order by a limit 10;
  89. explain SELECT a,b from t3 group by a,b order by a+1;
  90. drop table t1,t2,t3,t4;
  91. CREATE TABLE t1 (name varchar(255));
  92. INSERT INTO t1 VALUES ('aa'),('ab'),('ac'),('ad'),('ae');
  93. SELECT DISTINCT * FROM t1 LIMIT 2;
  94. SELECT DISTINCT name FROM t1 LIMIT 2;
  95. SELECT DISTINCT 1 FROM t1 LIMIT 2;
  96. drop table t1;
  97. CREATE TABLE t1 (
  98.   ID int(11) NOT NULL auto_increment,
  99.   NAME varchar(75) DEFAULT '' NOT NULL,
  100.   LINK_ID int(11) DEFAULT '0' NOT NULL,
  101.   PRIMARY KEY (ID),
  102.   KEY NAME (NAME),
  103.   KEY LINK_ID (LINK_ID)
  104. );
  105. INSERT INTO t1 (ID, NAME, LINK_ID) VALUES (1,'Mike',0),(2,'Jack',0),(3,'Bill',0);
  106. CREATE TABLE t2 (
  107.   ID int(11) NOT NULL auto_increment,
  108.   NAME varchar(150) DEFAULT '' NOT NULL,
  109.   PRIMARY KEY (ID),
  110.   KEY NAME (NAME)
  111. );
  112. SELECT DISTINCT
  113.     t2.id AS key_link_id,
  114.     t2.name AS link
  115. FROM t1
  116. LEFT JOIN t2 ON t1.link_id=t2.id
  117. GROUP BY t1.id
  118. ORDER BY link;
  119. drop table t1,t2;
  120. #
  121. # Problem with table dependencies
  122. #
  123. create table t1 (
  124.     id int not null,
  125.     name tinytext not null,
  126.     unique (id)
  127. );
  128. create table t2 (
  129.     id int not null,
  130.     idx int not null,
  131.     unique (id, idx)
  132. );
  133. create table t3 (
  134.     id int not null,
  135.     idx int not null,
  136.     unique (id, idx)
  137. );
  138. insert into t1 values (1,'yes'), (2,'no');
  139. insert into t2 values (1,1);
  140. insert into t3 values (1,1);
  141. EXPLAIN
  142. SELECT DISTINCT
  143.     t1.id
  144. from
  145.     t1
  146.     straight_join
  147.     t2
  148.     straight_join
  149.     t3
  150.     straight_join
  151.     t1 as j_lj_t2 left join t2 as t2_lj
  152.         on j_lj_t2.id=t2_lj.id
  153.     straight_join
  154.     t1 as j_lj_t3 left join t3 as t3_lj
  155.         on j_lj_t3.id=t3_lj.id
  156. WHERE
  157.     ((t1.id=j_lj_t2.id AND t2_lj.id IS NULL) OR (t1.id=t2.id AND t2.idx=2))
  158.     AND ((t1.id=j_lj_t3.id AND t3_lj.id IS NULL) OR (t1.id=t3.id AND t3.idx=2));
  159. SELECT DISTINCT
  160.     t1.id
  161. from
  162.     t1
  163.     straight_join
  164.     t2
  165.     straight_join
  166.     t3
  167.     straight_join
  168.     t1 as j_lj_t2 left join t2 as t2_lj
  169.         on j_lj_t2.id=t2_lj.id
  170.     straight_join
  171.     t1 as j_lj_t3 left join t3 as t3_lj
  172.         on j_lj_t3.id=t3_lj.id
  173. WHERE
  174.     ((t1.id=j_lj_t2.id AND t2_lj.id IS NULL) OR (t1.id=t2.id AND t2.idx=2))
  175.     AND ((t1.id=j_lj_t3.id AND t3_lj.id IS NULL) OR (t1.id=t3.id AND t3.idx=2));
  176. drop table t1,t2,t3;
  177. #
  178. # Test using DISTINCT on a function that contains a group function
  179. # This also test the case when one doesn't use all fields in GROUP BY.
  180. #
  181. create table t1 (a int not null, b int not null, t time);
  182. insert into t1 values (1,1,"00:06:15"),(1,2,"00:06:15"),(1,2,"00:30:15"),(1,3,"00:06:15"),(1,3,"00:30:15");
  183. select a,sec_to_time(sum(time_to_sec(t))) from t1 group by a,b;
  184. select distinct a,sec_to_time(sum(time_to_sec(t))) from t1 group by a,b;
  185. create table t2 (a int not null primary key, b int);
  186. insert into t2 values (1,1),(2,2),(3,3);
  187. select t1.a,sec_to_time(sum(time_to_sec(t))) from t1 left join t2 on (t1.b=t2.a) group by t1.a,t2.b;
  188. select distinct t1.a,sec_to_time(sum(time_to_sec(t))) from t1 left join t2 on (t1.b=t2.a) group by t1.a,t2.b;
  189. drop table t1,t2;
  190. #
  191. # Test problem with DISTINCT and HAVING
  192. #
  193. create table t1 (a int not null,b char(5), c text);
  194. insert into t1 (a) values (1),(2),(3),(4),(1),(2),(3),(4);
  195. select distinct a from t1 group by b,a having a > 2 order by a desc;
  196. select distinct a,c from t1 group by b,c,a having a > 2 order by a desc;
  197. drop table t1;
  198. #
  199. # Test problem with DISTINCT and ORDER BY DESC
  200. #
  201. create table t1 (a char(1), key(a)) engine=myisam;
  202. insert into t1 values('1'),('1');
  203. select * from t1 where a >= '1'; 
  204. select distinct a from t1 order by a desc;
  205. select distinct a from t1 where a >= '1' order by a desc;
  206. drop table t1;
  207. #
  208. # Test when using a not previously used column in ORDER BY
  209. #
  210. CREATE TABLE t1 (email varchar(50), infoID BIGINT, dateentered DATETIME);
  211. CREATE TABLE t2 (infoID BIGINT, shipcode varchar(10));
  212. INSERT INTO t1 (email, infoID, dateentered) VALUES
  213.       ('test1@testdomain.com', 1, '2002-07-30 22:56:38'),
  214.       ('test1@testdomain.com', 1, '2002-07-27 22:58:16'),
  215.       ('test2@testdomain.com', 1, '2002-06-19 15:22:19'),
  216.       ('test2@testdomain.com', 2, '2002-06-18 14:23:47'),
  217.       ('test3@testdomain.com', 1, '2002-05-19 22:17:32');
  218. INSERT INTO t2(infoID, shipcode) VALUES
  219.       (1, 'Z001'),
  220.       (2, 'R002');
  221. SELECT DISTINCTROW email, shipcode FROM t1, t2 WHERE t1.infoID=t2.infoID;
  222. SELECT DISTINCTROW email FROM t1 ORDER BY dateentered DESC;
  223. SELECT DISTINCTROW email, shipcode FROM t1, t2 WHERE t1.infoID=t2.infoID ORDER BY dateentered DESC;
  224. drop table t1,t2;
  225. #
  226. # test with table.* in DISTINCT
  227. #
  228. CREATE TABLE t1 (privatemessageid int(10) unsigned NOT NULL auto_increment,  folderid smallint(6) NOT NULL default '0',  userid int(10) unsigned NOT NULL default '0',  touserid int(10) unsigned NOT NULL default '0',  fromuserid int(10) unsigned NOT NULL default '0',  title varchar(250) NOT NULL default '',  message mediumtext NOT NULL,  dateline int(10) unsigned NOT NULL default '0',  showsignature smallint(6) NOT NULL default '0',  iconid smallint(5) unsigned NOT NULL default '0',  messageread smallint(6) NOT NULL default '0',  readtime int(10) unsigned NOT NULL default '0',  receipt smallint(6) unsigned NOT NULL default '0',  deleteprompt smallint(6) unsigned NOT NULL default '0',  multiplerecipients smallint(6) unsigned NOT NULL default '0',  PRIMARY KEY  (privatemessageid),  KEY userid (userid)) ENGINE=MyISAM;
  229. INSERT INTO t1 VALUES (128,0,33,33,8,':D','',996121863,1,0,2,996122850,2,0,0);
  230. CREATE TABLE t2 (userid int(10) unsigned NOT NULL auto_increment,  usergroupid smallint(5) unsigned NOT NULL default '0',  username varchar(50) NOT NULL default '',  password varchar(50) NOT NULL default '',  email varchar(50) NOT NULL default '',  styleid smallint(5) unsigned NOT NULL default '0',  parentemail varchar(50) NOT NULL default '',  coppauser smallint(6) NOT NULL default '0',  homepage varchar(100) NOT NULL default '',  icq varchar(20) NOT NULL default '',  aim varchar(20) NOT NULL default '',  yahoo varchar(20) NOT NULL default '',  signature mediumtext NOT NULL,  adminemail smallint(6) NOT NULL default '0',  showemail smallint(6) NOT NULL default '0',  invisible smallint(6) NOT NULL default '0',  usertitle varchar(250) NOT NULL default '',  customtitle smallint(6) NOT NULL default '0',  joindate int(10) unsigned NOT NULL default '0',  cookieuser smallint(6) NOT NULL default '0',  daysprune smallint(6) NOT NULL default '0',  lastvisit int(10) unsigned NOT NULL default '0',  lastactivity int(10) unsigned NOT NULL default '0',  lastpost int(10) unsigned NOT NULL default '0',  posts smallint(5) unsigned NOT NULL default '0',  timezoneoffset varchar(4) NOT NULL default '',  emailnotification smallint(6) NOT NULL default '0',  buddylist mediumtext NOT NULL,  ignorelist mediumtext NOT NULL,  pmfolders mediumtext NOT NULL,  receivepm smallint(6) NOT NULL default '0',  emailonpm smallint(6) NOT NULL default '0',  pmpopup smallint(6) NOT NULL default '0',  avatarid smallint(6) NOT NULL default '0',  avatarrevision int(6) unsigned NOT NULL default '0',  options smallint(6) NOT NULL default '15',  birthday date NOT NULL default '0000-00-00',  maxposts smallint(6) NOT NULL default '-1',  startofweek smallint(6) NOT NULL default '1',  ipaddress varchar(20) NOT NULL default '',  referrerid int(10) unsigned NOT NULL default '0',  nosessionhash smallint(6) NOT NULL default '0',  autorefresh smallint(6) NOT NULL default '-1',  messagepopup tinyint(2) NOT NULL default '0',  inforum smallint(5) unsigned NOT NULL default '0',  ratenum smallint(5) unsigned NOT NULL default '0',  ratetotal smallint(5) unsigned NOT NULL default '0',  allowrate smallint(5) unsigned NOT NULL default '1',  PRIMARY KEY  (userid),  KEY usergroupid (usergroupid),  KEY username (username),  KEY inforum (inforum)) ENGINE=MyISAM;
  231. INSERT INTO t2 VALUES (33,6,'Kevin','0','kevin@stileproject.com',1,'',0,'http://www.stileproject.com','','','','',1,1,0,'Administrator',0,996120694,1,-1,1030996168,1031027028,1030599436,36,'-6',0,'','','',1,0,1,0,0,15,'0000-00-00',-1,1,'64.0.0.0',0,1,-1,0,0,4,19,1);
  232. SELECT DISTINCT t1.*, t2.* FROM t1 LEFT JOIN t2 ON (t2.userid = t1.touserid);
  233. DROP TABLE t1,t2;
  234. #
  235. # test with const_item in ORDER BY
  236. #
  237. CREATE TABLE t1 (a int primary key, b int, c int);
  238. INSERT t1 VALUES (1,2,3);
  239. CREATE TABLE t2 (a int primary key, b int, c int);
  240. INSERT t2 VALUES (3,4,5);
  241. SELECT DISTINCT t1.a, t2.b FROM t1, t2 WHERE t1.a=1 ORDER BY t2.c;
  242. DROP TABLE t1,t2;
  243. #
  244. # Test of LEFT() with distinct
  245. #
  246. CREATE table t1 (  `id` int(11) NOT NULL auto_increment,  `name` varchar(50) NOT NULL default '',  PRIMARY KEY  (`id`)) ENGINE=MyISAM AUTO_INCREMENT=3 ;
  247. INSERT INTO t1 VALUES (1, 'aaaaa');
  248. INSERT INTO t1 VALUES (3, 'aaaaa');
  249. INSERT INTO t1 VALUES (2, 'eeeeeee');
  250. select distinct left(name,1) as name from t1;
  251. drop  table t1; 
  252. #
  253. # Test case from sel000100
  254. #
  255. CREATE TABLE t1 (
  256.   ID int(11) NOT NULL auto_increment,
  257.   NAME varchar(75) DEFAULT '' NOT NULL,
  258.   LINK_ID int(11) DEFAULT '0' NOT NULL,
  259.   PRIMARY KEY (ID),
  260.   KEY NAME (NAME),
  261.   KEY LINK_ID (LINK_ID)
  262. );
  263. INSERT INTO t1 (ID, NAME, LINK_ID) VALUES (1,'Mike',0);
  264. INSERT INTO t1 (ID, NAME, LINK_ID) VALUES (2,'Jack',0);
  265. INSERT INTO t1 (ID, NAME, LINK_ID) VALUES (3,'Bill',0);
  266. CREATE TABLE t2 (
  267.   ID int(11) NOT NULL auto_increment,
  268.   NAME varchar(150) DEFAULT '' NOT NULL,
  269.   PRIMARY KEY (ID),
  270.   KEY NAME (NAME)
  271. );
  272. SELECT DISTINCT
  273.     t2.id AS key_link_id,
  274.     t2.name AS link
  275. FROM t1
  276. LEFT JOIN t2 ON t1.link_id=t2.id
  277. GROUP BY t1.id
  278. ORDER BY link;
  279. drop table t1,t2;
  280. #
  281. # test case for #674
  282. #
  283. CREATE TABLE t1 (
  284.   html varchar(5) default NULL,
  285.   rin int(11) default '0',
  286.   out int(11) default '0'
  287. ) ENGINE=MyISAM;
  288. INSERT INTO t1 VALUES ('1',1,0);
  289. SELECT DISTINCT html,SUM(out)/(SUM(rin)+1) as 'prod' FROM t1 GROUP BY rin;
  290. drop table t1;
  291. #
  292. # Test cases for #12625: DISTINCT for a list with constants
  293. #
  294. CREATE TABLE t1 (a int);
  295. INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
  296. SELECT DISTINCT a, 1 FROM t1;
  297. SELECT DISTINCT 1, a FROM t1;
  298. CREATE TABLE t2 (a int, b int); 
  299. INSERT INTO t2 VALUES (1,1),(2,2),(2,3),(2,4),(3,5);
  300. SELECT DISTINCT a, b, 2 FROM t2;
  301. SELECT DISTINCT 2, a, b FROM t2;
  302. SELECT DISTINCT a, 2, b FROM t2;
  303. DROP TABLE t1,t2;
  304. # End of 4.1 tests