order_by.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:7k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Bug with order by
  3. #
  4. drop table if exists t1,t2,t3;
  5. CREATE TABLE t1 (
  6.   id int(6) DEFAULT '0' NOT NULL,
  7.   idservice int(5),
  8.   clee char(20) NOT NULL,
  9.   flag char(1),
  10.   KEY id (id),
  11.   PRIMARY KEY (clee)
  12. );
  13. INSERT INTO t1 VALUES (2,4,'6067169d','Y');
  14. INSERT INTO t1 VALUES (2,5,'606716d1','Y');
  15. INSERT INTO t1 VALUES (2,1,'606717c1','Y');
  16. INSERT INTO t1 VALUES (3,1,'6067178d','Y');
  17. INSERT INTO t1 VALUES (2,6,'60671515','Y');
  18. INSERT INTO t1 VALUES (2,7,'60671569','Y');
  19. INSERT INTO t1 VALUES (2,3,'dd','Y');
  20. CREATE TABLE t2 (
  21.   id int(6) DEFAULT '0' NOT NULL auto_increment,
  22.   description varchar(40) NOT NULL,
  23.   idform varchar(40),
  24.   ordre int(6) unsigned DEFAULT '0' NOT NULL,
  25.   image varchar(60),
  26.   PRIMARY KEY (id),
  27.   KEY id (id,ordre)
  28. );
  29. #
  30. # Dumping data for table 't2'
  31. #
  32. INSERT INTO t2 VALUES (1,'Emettre un appel d''offres','en_construction.html',10,'emettre.gif');
  33. INSERT INTO t2 VALUES (2,'Emettre des soumissions','en_construction.html',20,'emettre.gif');
  34. INSERT INTO t2 VALUES (7,'Liste des t2','t2_liste_form.phtml',51060,'link.gif');
  35. INSERT INTO t2 VALUES (8,'Consulter les soumissions','consulter_soumissions.phtml',200,'link.gif');
  36. INSERT INTO t2 VALUES (9,'Ajouter un type de materiel','typeMateriel_ajoute_form.phtml',51000,'link.gif');
  37. INSERT INTO t2 VALUES (10,'Lister/modifier un type de materiel','typeMateriel_liste_form.phtml',51010,'link.gif');
  38. INSERT INTO t2 VALUES (3,'Cr閑r une fiche de client','clients_ajoute_form.phtml',40000,'link.gif');
  39. INSERT INTO t2 VALUES (4,'Modifier des clients','en_construction.html',40010,'link.gif');
  40. INSERT INTO t2 VALUES (5,'Effacer des clients','en_construction.html',40020,'link.gif');
  41. INSERT INTO t2 VALUES (6,'Ajouter un service','t2_ajoute_form.phtml',51050,'link.gif');
  42. select t1.id,t1.idservice,t2.ordre,t2.description  from t1, t2 where t1.id = 2   and t1.idservice = t2.id  order by t2.ordre;
  43.  
  44. drop table t1,t2;
  45. #
  46. # Test of ORDER BY on concat() result
  47. #
  48. create table t1 (first char(10),last char(10));
  49. insert into t1 values ("Michael","Widenius");
  50. insert into t1 values ("Allan","Larsson");
  51. insert into t1 values ("David","Axmark");
  52. select concat(first," ",last) as name from t1 order by name;
  53. select concat(last," ",first) as name from t1 order by name;
  54. drop table t1;
  55. #
  56. # bug in distinct + order by
  57. #
  58. create table t1 (i int);
  59. insert into t1 values(1),(2),(1),(2),(1),(2),(3);
  60. select distinct i from t1;
  61. select distinct i from t1 order by rand(5);
  62. select distinct i from t1 order by i desc;
  63. select distinct i from t1 order by 1-i;
  64. select distinct i from t1 order by mod(i,2),i;
  65. drop table t1;
  66. #
  67. # Order by on first index part
  68. #
  69. create table t1 (id int not null,col1 int not null,col2 int not null,index(col1));
  70. insert into t1 values(1,2,2),(2,2,1),(3,1,2),(4,1,1),(5,1,4),(6,2,3),(7,3,1),(8,2,4);
  71. select * from t1 order by col1,col2;
  72. select col1 from t1 order by id;
  73. select col1 as id from t1 order by t1.id;
  74. select concat(col1) as id from t1 order by t1.id;
  75. drop table t1;
  76. #
  77. # Test of order by on field()
  78. #
  79. CREATE TABLE t1 (id int auto_increment primary key,aika varchar(40),aikakentta  timestamp);
  80. insert into t1 (aika) values ('Keskiviikko');
  81. insert into t1 (aika) values ('Tiistai');
  82. insert into t1 (aika) values ('Maanantai');
  83. insert into t1 (aika) values ('Sunnuntai');
  84. SELECT FIELD(SUBSTRING(t1.aika,1,2),'Ma','Ti','Ke','To','Pe','La','Su') AS test FROM t1 ORDER by test;
  85. drop table t1;
  86. #
  87. # Test of ORDER BY on IF
  88. #
  89. CREATE TABLE t1
  90. (
  91.   a          int unsigned       NOT NULL,
  92.   b          int unsigned       NOT NULL,
  93.   c          int unsigned       NOT NULL,
  94.   UNIQUE(a),
  95.   INDEX(b),
  96.   INDEX(c)
  97. );
  98. CREATE TABLE t2
  99. (
  100.   c          int unsigned       NOT NULL,
  101.   i          int unsigned       NOT NULL,
  102.   INDEX(c)
  103. );
  104. CREATE TABLE t3
  105. (
  106.   c          int unsigned       NOT NULL,
  107.   v          varchar(64),
  108.   INDEX(c)
  109. );
  110. INSERT INTO t1 VALUES (1,1,1);
  111. INSERT INTO t1 VALUES (2,1,2);
  112. INSERT INTO t1 VALUES (3,2,1);
  113. INSERT INTO t1 VALUES (4,2,2);
  114. INSERT INTO t2 VALUES (1,50);
  115. INSERT INTO t2 VALUES (2,25);
  116. INSERT INTO t3 VALUES (1,'123 Park Place');
  117. INSERT INTO t3 VALUES (2,'453 Boardwalk');
  118. SELECT    a,b,if(b = 1,i,if(b = 2,v,''))
  119. FROM      t1
  120. LEFT JOIN t2 USING(c)
  121. LEFT JOIN t3 ON t3.c = t1.c;
  122. SELECT    a,b,if(b = 1,i,if(b = 2,v,''))
  123. FROM      t1
  124. LEFT JOIN t2 USING(c)
  125. LEFT JOIN t3 ON t3.c = t1.c
  126. ORDER BY a;
  127. drop table t1,t2,t3;
  128. #
  129. # Test of ORDER BY (Bug found by Dean Edmonds)
  130. #
  131. create table t1 (ID int not null primary key, TransactionID int not null);
  132. insert into t1 (ID, TransactionID) values  (1,  87), (2,  89), (3,  92), (4,  94), (5,  486), (6,  490), (7,  753), (9,  828), (10, 832), (11, 834), (12, 840);
  133. create table t2 (ID int not null primary key, GroupID int not null);
  134.  insert into t2 (ID, GroupID) values (87,  87), (89,  89), (92,  92), (94,  94), (486, 486), (490, 490),(753, 753), (828, 828), (832, 832), (834, 834), (840, 840);
  135. create table t3 (ID int not null primary key, DateOfAction date not null);
  136. insert into t3 (ID, DateOfAction) values  (87,  '1999-07-19'), (89,  '1999-07-19'), (92,  '1999-07-19'), (94,  '1999-07-19'), (486, '1999-07-18'), (490, '2000-03-27'), (753, '2000-03-28'), (828, '1999-07-27'), (832, '1999-07-27'),(834, '1999-07-27'), (840, '1999-07-27');
  137. select t3.DateOfAction, t1.TransactionID from t1 join t2 join t3 where t2.ID = t1.TransactionID and t3.ID = t2.GroupID order by t3.DateOfAction, t1.TransactionID; 
  138. select t3.DateOfAction, t1.TransactionID from t1 join t2 join t3 where t2.ID = t1.TransactionID and t3.ID = t2.GroupID order by t1.TransactionID,t3.DateOfAction; 
  139. drop table t1,t2,t3;
  140. #bug reported by Wouter de Jong
  141. drop table if exists members;
  142. CREATE TABLE members (
  143.   member_id int(11) NOT NULL auto_increment,
  144.   inschrijf_datum varchar(20) NOT NULL default '',
  145.   lastchange_datum varchar(20) NOT NULL default '',
  146.   nickname varchar(20) NOT NULL default '',
  147.   password varchar(8) NOT NULL default '',
  148.   voornaam varchar(30) NOT NULL default '',
  149.   tussenvoegsels varchar(10) NOT NULL default '',
  150.   achternaam varchar(50) NOT NULL default '',
  151.   straat varchar(100) NOT NULL default '',
  152.   postcode varchar(10) NOT NULL default '',
  153.   wijk varchar(40) NOT NULL default '',
  154.   plaats varchar(50) NOT NULL default '',
  155.   telefoon varchar(10) NOT NULL default '',
  156.   geboortedatum date NOT NULL default '0000-00-00',
  157.   geslacht varchar(5) NOT NULL default '',
  158.   email varchar(80) NOT NULL default '',
  159.   uin varchar(15) NOT NULL default '',
  160.   homepage varchar(100) NOT NULL default '',
  161.   internet varchar(15) NOT NULL default '',
  162.   scherk varchar(30) NOT NULL default '',
  163.   favo_boek varchar(50) NOT NULL default '',
  164.   favo_tijdschrift varchar(50) NOT NULL default '',
  165.   favo_tv varchar(50) NOT NULL default '',
  166.   favo_eten varchar(50) NOT NULL default '',
  167.   favo_muziek varchar(30) NOT NULL default '',
  168.   info text NOT NULL,
  169.   ipnr varchar(30) NOT NULL default '',
  170.   PRIMARY KEY  (member_id)
  171. ) TYPE=MyISAM PACK_KEYS=1;
  172. insert into members (member_id) values (1),(2),(3);
  173. select member_id, nickname, voornaam FROM members
  174. ORDER by lastchange_datum DESC LIMIT 2;
  175. drop table members;