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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3;
  2. CREATE TABLE t1 (
  3. id int(6) DEFAULT '0' NOT NULL,
  4. idservice int(5),
  5. clee char(20) NOT NULL,
  6. flag char(1),
  7. KEY id (id),
  8. PRIMARY KEY (clee)
  9. );
  10. INSERT INTO t1 VALUES (2,4,'6067169d','Y');
  11. INSERT INTO t1 VALUES (2,5,'606716d1','Y');
  12. INSERT INTO t1 VALUES (2,1,'606717c1','Y');
  13. INSERT INTO t1 VALUES (3,1,'6067178d','Y');
  14. INSERT INTO t1 VALUES (2,6,'60671515','Y');
  15. INSERT INTO t1 VALUES (2,7,'60671569','Y');
  16. INSERT INTO t1 VALUES (2,3,'dd','Y');
  17. CREATE TABLE t2 (
  18. id int(6) NOT NULL auto_increment,
  19. description varchar(40) NOT NULL,
  20. idform varchar(40),
  21. ordre int(6) unsigned DEFAULT '0' NOT NULL,
  22. image varchar(60),
  23. PRIMARY KEY (id),
  24. KEY id (id,ordre)
  25. );
  26. INSERT INTO t2 VALUES (1,'Emettre un appel d''offres','en_construction.html',10,'emettre.gif');
  27. INSERT INTO t2 VALUES (2,'Emettre des soumissions','en_construction.html',20,'emettre.gif');
  28. INSERT INTO t2 VALUES (7,'Liste des t2','t2_liste_form.phtml',51060,'link.gif');
  29. INSERT INTO t2 VALUES (8,'Consulter les soumissions','consulter_soumissions.phtml',200,'link.gif');
  30. INSERT INTO t2 VALUES (9,'Ajouter un type de materiel','typeMateriel_ajoute_form.phtml',51000,'link.gif');
  31. INSERT INTO t2 VALUES (10,'Lister/modifier un type de materiel','typeMateriel_liste_form.phtml',51010,'link.gif');
  32. INSERT INTO t2 VALUES (3,'Cr閑r une fiche de client','clients_ajoute_form.phtml',40000,'link.gif');
  33. INSERT INTO t2 VALUES (4,'Modifier des clients','en_construction.html',40010,'link.gif');
  34. INSERT INTO t2 VALUES (5,'Effacer des clients','en_construction.html',40020,'link.gif');
  35. INSERT INTO t2 VALUES (6,'Ajouter un service','t2_ajoute_form.phtml',51050,'link.gif');
  36. 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;
  37. id idservice ordre description
  38. 2 1 10 Emettre un appel d'offres
  39. 2 3 40000 Cr閑r une fiche de client
  40. 2 4 40010 Modifier des clients
  41. 2 5 40020 Effacer des clients
  42. 2 6 51050 Ajouter un service
  43. 2 7 51060 Liste des t2
  44. drop table t1,t2;
  45. create table t1 (first char(10),last char(10));
  46. insert into t1 values ("Michael","Widenius");
  47. insert into t1 values ("Allan","Larsson");
  48. insert into t1 values ("David","Axmark");
  49. select concat(first," ",last) as name from t1 order by name;
  50. name
  51. Allan Larsson
  52. David Axmark
  53. Michael Widenius
  54. select concat(last," ",first) as name from t1 order by name;
  55. name
  56. Axmark David
  57. Larsson Allan
  58. Widenius Michael
  59. drop table t1;
  60. create table t1 (i int);
  61. insert into t1 values(1),(2),(1),(2),(1),(2),(3);
  62. select distinct i from t1;
  63. i
  64. 1
  65. 2
  66. 3
  67. select distinct i from t1 order by rand(5);
  68. i
  69. 1
  70. 3
  71. 2
  72. select distinct i from t1 order by i desc;
  73. i
  74. 3
  75. 2
  76. 1
  77. select distinct i from t1 order by 1-i;
  78. i
  79. 3
  80. 2
  81. 1
  82. select distinct i from t1 order by mod(i,2),i;
  83. i
  84. 2
  85. 1
  86. 3
  87. drop table t1;
  88. create table t1 ( pk     int primary key, name   varchar(255) not null, number varchar(255) not null);
  89. insert into t1 values (1, 'Gamma',     '123'), (2, 'Gamma Ext', '123a'), (3, 'Alpha',     '001'), (4, 'Beta',      '200c');
  90. select distinct t1.name as 'Building Name',t1.number as 'Building Number' from t1 order by t1.name asc;
  91. Building Name Building Number
  92. Alpha 001
  93. Beta 200c
  94. Gamma 123
  95. Gamma Ext 123a
  96. drop table t1;
  97. create table t1 (id int not null,col1 int not null,col2 int not null,index(col1));
  98. 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);
  99. select * from t1 order by col1,col2;
  100. id col1 col2
  101. 4 1 1
  102. 3 1 2
  103. 5 1 4
  104. 2 2 1
  105. 1 2 2
  106. 6 2 3
  107. 8 2 4
  108. 7 3 1
  109. select col1 from t1 order by id;
  110. col1
  111. 2
  112. 2
  113. 1
  114. 1
  115. 1
  116. 2
  117. 3
  118. 2
  119. select col1 as id from t1 order by id;
  120. id
  121. 1
  122. 1
  123. 1
  124. 2
  125. 2
  126. 2
  127. 2
  128. 3
  129. select concat(col1) as id from t1 order by id;
  130. id
  131. 1
  132. 1
  133. 1
  134. 2
  135. 2
  136. 2
  137. 2
  138. 3
  139. drop table t1;
  140. CREATE TABLE t1 (id int auto_increment primary key,aika varchar(40),aikakentta  timestamp);
  141. insert into t1 (aika) values ('Keskiviikko');
  142. insert into t1 (aika) values ('Tiistai');
  143. insert into t1 (aika) values ('Maanantai');
  144. insert into t1 (aika) values ('Sunnuntai');
  145. SELECT FIELD(SUBSTRING(t1.aika,1,2),'Ma','Ti','Ke','To','Pe','La','Su') AS test FROM t1 ORDER by test;
  146. test
  147. 1
  148. 2
  149. 3
  150. 7
  151. drop table t1;
  152. CREATE TABLE t1
  153. (
  154. a          int unsigned       NOT NULL,
  155. b          int unsigned       NOT NULL,
  156. c          int unsigned       NOT NULL,
  157. UNIQUE(a),
  158. INDEX(b),
  159. INDEX(c)
  160. );
  161. CREATE TABLE t2
  162. (
  163. c          int unsigned       NOT NULL,
  164. i          int unsigned       NOT NULL,
  165. INDEX(c)
  166. );
  167. CREATE TABLE t3
  168. (
  169. c          int unsigned       NOT NULL,
  170. v          varchar(64),
  171. INDEX(c)
  172. );
  173. INSERT INTO t1 VALUES (1,1,1);
  174. INSERT INTO t1 VALUES (2,1,2);
  175. INSERT INTO t1 VALUES (3,2,1);
  176. INSERT INTO t1 VALUES (4,2,2);
  177. INSERT INTO t2 VALUES (1,50);
  178. INSERT INTO t2 VALUES (2,25);
  179. INSERT INTO t3 VALUES (1,'123 Park Place');
  180. INSERT INTO t3 VALUES (2,'453 Boardwalk');
  181. SELECT    a,b,if(b = 1,i,if(b = 2,v,''))
  182. FROM      t1
  183. LEFT JOIN t2 USING(c)
  184. LEFT JOIN t3 ON t3.c = t1.c;
  185. a b if(b = 1,i,if(b = 2,v,''))
  186. 1 1 50
  187. 2 1 25
  188. 3 2 123 Park Place
  189. 4 2 453 Boardwalk
  190. SELECT    a,b,if(b = 1,i,if(b = 2,v,''))
  191. FROM      t1
  192. LEFT JOIN t2 USING(c)
  193. LEFT JOIN t3 ON t3.c = t1.c
  194. ORDER BY a;
  195. a b if(b = 1,i,if(b = 2,v,''))
  196. 1 1 50
  197. 2 1 25
  198. 3 2 123 Park Place
  199. 4 2 453 Boardwalk
  200. drop table t1,t2,t3;
  201. create table t1 (ID int not null primary key, TransactionID int not null);
  202. 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);
  203. create table t2 (ID int not null primary key, GroupID int not null);
  204. 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);
  205. create table t3 (ID int not null primary key, DateOfAction date not null);
  206. 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');
  207. 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;
  208. DateOfAction TransactionID
  209. 1999-07-18 486
  210. 1999-07-19 87
  211. 1999-07-19 89
  212. 1999-07-19 92
  213. 1999-07-19 94
  214. 1999-07-27 828
  215. 1999-07-27 832
  216. 1999-07-27 834
  217. 1999-07-27 840
  218. 2000-03-27 490
  219. 2000-03-28 753
  220. 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;
  221. DateOfAction TransactionID
  222. 1999-07-19 87
  223. 1999-07-19 89
  224. 1999-07-19 92
  225. 1999-07-19 94
  226. 1999-07-18 486
  227. 2000-03-27 490
  228. 2000-03-28 753
  229. 1999-07-27 828
  230. 1999-07-27 832
  231. 1999-07-27 834
  232. 1999-07-27 840
  233. drop table t1,t2,t3;
  234. CREATE TABLE t1 (
  235. member_id int(11) NOT NULL auto_increment,
  236. inschrijf_datum varchar(20) NOT NULL default '',
  237. lastchange_datum varchar(20) NOT NULL default '',
  238. nickname varchar(20) NOT NULL default '',
  239. password varchar(8) NOT NULL default '',
  240. voornaam varchar(30) NOT NULL default '',
  241. tussenvoegsels varchar(10) NOT NULL default '',
  242. achternaam varchar(50) NOT NULL default '',
  243. straat varchar(100) NOT NULL default '',
  244. postcode varchar(10) NOT NULL default '',
  245. wijk varchar(40) NOT NULL default '',
  246. plaats varchar(50) NOT NULL default '',
  247. telefoon varchar(10) NOT NULL default '',
  248. geboortedatum date NOT NULL default '0000-00-00',
  249. geslacht varchar(5) NOT NULL default '',
  250. email varchar(80) NOT NULL default '',
  251. uin varchar(15) NOT NULL default '',
  252. homepage varchar(100) NOT NULL default '',
  253. internet varchar(15) NOT NULL default '',
  254. scherk varchar(30) NOT NULL default '',
  255. favo_boek varchar(50) NOT NULL default '',
  256. favo_tijdschrift varchar(50) NOT NULL default '',
  257. favo_tv varchar(50) NOT NULL default '',
  258. favo_eten varchar(50) NOT NULL default '',
  259. favo_muziek varchar(30) NOT NULL default '',
  260. info text NOT NULL,
  261. ipnr varchar(30) NOT NULL default '',
  262. PRIMARY KEY  (member_id)
  263. ) ENGINE=MyISAM PACK_KEYS=1;
  264. insert into t1 (member_id) values (1),(2),(3);
  265. select member_id, nickname, voornaam FROM t1
  266. ORDER by lastchange_datum DESC LIMIT 2;
  267. member_id nickname voornaam
  268. 1
  269. 2
  270. drop table t1;
  271. create table t1 (a int not null, b int, c varchar(10), key (a, b, c));
  272. insert into t1 values (1, NULL, NULL), (1, NULL, 'b'), (1, 1, NULL), (1, 1, 'b'), (1, 1, 'b'), (2, 1, 'a'), (2, 1, 'b'), (2, 2, 'a'), (2, 2, 'b'), (2, 3, 'c'),(1,3,'b');
  273. explain select * from t1 where (a = 1 and b is null and c = 'b') or (a > 2) order by a desc;
  274. id select_type table type possible_keys key key_len ref rows Extra
  275. 1 SIMPLE t1 range a a 20 NULL 2 Using where; Using index
  276. select * from t1 where (a = 1 and b is null and c = 'b') or (a > 2) order by a desc;
  277. a b c
  278. 1 NULL b
  279. explain select * from t1 where a >= 1 and a < 3 order by a desc;
  280. id select_type table type possible_keys key key_len ref rows Extra
  281. 1 SIMPLE t1 range a a 4 NULL 10 Using where; Using index
  282. select * from t1 where a >= 1 and a < 3 order by a desc;
  283. a b c
  284. 2 3 c
  285. 2 2 b
  286. 2 2 a
  287. 2 1 b
  288. 2 1 a
  289. 1 3 b
  290. 1 1 b
  291. 1 1 b
  292. 1 1 NULL
  293. 1 NULL b
  294. 1 NULL NULL
  295. explain select * from t1 where a = 1 order by a desc, b desc;
  296. id select_type table type possible_keys key key_len ref rows Extra
  297. 1 SIMPLE t1 ref a a 4 const 5 Using where; Using index
  298. select * from t1 where a = 1 order by a desc, b desc;
  299. a b c
  300. 1 3 b
  301. 1 1 b
  302. 1 1 b
  303. 1 1 NULL
  304. 1 NULL b
  305. 1 NULL NULL
  306. explain select * from t1 where a = 1 and b is null order by a desc, b desc;
  307. id select_type table type possible_keys key key_len ref rows Extra
  308. 1 SIMPLE t1 ref a a 9 const,const 2 Using where; Using index; Using filesort
  309. select * from t1 where a = 1 and b is null order by a desc, b desc;
  310. a b c
  311. 1 NULL NULL
  312. 1 NULL b
  313. explain select * from t1 where a >= 1 and a < 3 and b >0 order by a desc,b desc;
  314. id select_type table type possible_keys key key_len ref rows Extra
  315. 1 SIMPLE t1 range a a 9 NULL 8 Using where; Using index
  316. explain select * from t1 where a = 2 and b >0 order by a desc,b desc;
  317. id select_type table type possible_keys key key_len ref rows Extra
  318. 1 SIMPLE t1 range a a 9 NULL 5 Using where; Using index
  319. explain select * from t1 where a = 2 and b is null order by a desc,b desc;
  320. id select_type table type possible_keys key key_len ref rows Extra
  321. 1 SIMPLE t1 ref a a 9 const,const 1 Using where; Using index; Using filesort
  322. explain select * from t1 where a = 2 and (b is null or b > 0) order by a
  323. desc,b desc;
  324. id select_type table type possible_keys key key_len ref rows Extra
  325. 1 SIMPLE t1 range a a 9 NULL 6 Using where; Using index
  326. explain select * from t1 where a = 2 and b > 0 order by a desc,b desc;
  327. id select_type table type possible_keys key key_len ref rows Extra
  328. 1 SIMPLE t1 range a a 9 NULL 5 Using where; Using index
  329. explain select * from t1 where a = 2 and b < 2 order by a desc,b desc;
  330. id select_type table type possible_keys key key_len ref rows Extra
  331. 1 SIMPLE t1 range a a 9 NULL 2 Using where; Using index
  332. explain select * from t1 where a = 1 order by b desc;
  333. id select_type table type possible_keys key key_len ref rows Extra
  334. 1 SIMPLE t1 ref a a 4 const 5 Using where; Using index
  335. select * from t1 where a = 1 order by b desc;
  336. a b c
  337. 1 3 b
  338. 1 1 b
  339. 1 1 b
  340. 1 1 NULL
  341. 1 NULL b
  342. 1 NULL NULL
  343. alter table t1 modify b int not null, modify c varchar(10) not null;
  344. Warnings:
  345. Warning 1265 Data truncated for column 'b' at row 1
  346. Warning 1265 Data truncated for column 'c' at row 1
  347. Warning 1265 Data truncated for column 'b' at row 2
  348. Warning 1265 Data truncated for column 'c' at row 3
  349. explain select * from t1 order by a, b, c;
  350. id select_type table type possible_keys key key_len ref rows Extra
  351. 1 SIMPLE t1 index NULL a 18 NULL 11 Using index
  352. select * from t1 order by a, b, c;
  353. a b c
  354. 1 0
  355. 1 0 b
  356. 1 1
  357. 1 1 b
  358. 1 1 b
  359. 1 3 b
  360. 2 1 a
  361. 2 1 b
  362. 2 2 a
  363. 2 2 b
  364. 2 3 c
  365. explain select * from t1 order by a desc, b desc, c desc;
  366. id select_type table type possible_keys key key_len ref rows Extra
  367. 1 SIMPLE t1 index NULL a 18 NULL 11 Using index
  368. select * from t1 order by a desc, b desc, c desc;
  369. a b c
  370. 2 3 c
  371. 2 2 b
  372. 2 2 a
  373. 2 1 b
  374. 2 1 a
  375. 1 3 b
  376. 1 1 b
  377. 1 1 b
  378. 1 1
  379. 1 0 b
  380. 1 0
  381. explain select * from t1 where (a = 1 and b = 1 and c = 'b') or (a > 2) order by a desc;
  382. id select_type table type possible_keys key key_len ref rows Extra
  383. 1 SIMPLE t1 range a a 18 NULL 3 Using where; Using index
  384. select * from t1 where (a = 1 and b = 1 and c = 'b') or (a > 2) order by a desc;
  385. a b c
  386. 1 1 b
  387. 1 1 b
  388. explain select * from t1 where a < 2 and b <= 1 order by a desc, b desc;
  389. id select_type table type possible_keys key key_len ref rows Extra
  390. 1 SIMPLE t1 range a a 4 NULL 6 Using where; Using index
  391. select * from t1 where a < 2 and b <= 1 order by a desc, b desc;
  392. a b c
  393. 1 1 b
  394. 1 1 b
  395. 1 1
  396. 1 0 b
  397. 1 0
  398. select count(*) from t1 where a < 5 and b > 0;
  399. count(*)
  400. 9
  401. select * from t1 where a < 5 and b > 0 order by a desc,b desc;
  402. a b c
  403. 2 3 c
  404. 2 2 b
  405. 2 2 a
  406. 2 1 b
  407. 2 1 a
  408. 1 3 b
  409. 1 1 b
  410. 1 1 b
  411. 1 1
  412. explain select * from t1 where a between 1 and 3 and b <= 1 order by a desc, b desc;
  413. id select_type table type possible_keys key key_len ref rows Extra
  414. 1 SIMPLE t1 range a a 8 NULL 10 Using where; Using index
  415. select * from t1 where a between 1 and 3 and b <= 1 order by a desc, b desc;
  416. a b c
  417. 2 1 b
  418. 2 1 a
  419. 1 1 b
  420. 1 1 b
  421. 1 1
  422. 1 0 b
  423. 1 0
  424. explain select * from t1 where a between 0 and 1 order by a desc, b desc;
  425. id select_type table type possible_keys key key_len ref rows Extra
  426. 1 SIMPLE t1 range a a 4 NULL 5 Using where; Using index
  427. select * from t1 where a between 0 and 1 order by a desc, b desc;
  428. a b c
  429. 1 3 b
  430. 1 1 b
  431. 1 1 b
  432. 1 1
  433. 1 0 b
  434. 1 0
  435. drop table t1;
  436. CREATE TABLE t1 (
  437. gid int(10) unsigned NOT NULL auto_increment,
  438. cid smallint(5) unsigned NOT NULL default '0',
  439. PRIMARY KEY  (gid),
  440. KEY component_id (cid)
  441. ) ENGINE=MyISAM;
  442. INSERT INTO t1 VALUES (103853,108),(103867,108),(103962,108),(104505,108),(104619,108),(104620,108);
  443. ALTER TABLE t1 add skr int(10) not null;
  444. CREATE TABLE t2 (
  445. gid int(10) unsigned NOT NULL default '0',
  446. uid smallint(5) unsigned NOT NULL default '1',
  447. sid tinyint(3) unsigned NOT NULL default '1',
  448. PRIMARY KEY  (gid),
  449. KEY uid (uid),
  450. KEY status_id (sid)
  451. ) ENGINE=MyISAM;
  452. INSERT INTO t2 VALUES (103853,250,5),(103867,27,5),(103962,27,5),(104505,117,5),(104619,75,5),(104620,15,5);
  453. CREATE TABLE t3 (
  454. uid smallint(6) NOT NULL auto_increment,
  455. PRIMARY KEY  (uid)
  456. ) ENGINE=MyISAM;
  457. INSERT INTO t3 VALUES (1),(15),(27),(75),(117),(250);
  458. ALTER TABLE t3 add skr int(10) not null;
  459. select t1.gid, t2.sid, t3.uid from t2, t1, t3 where t2.gid = t1.gid and t2.uid = t3.uid order by t3.uid, t1.gid;
  460. gid sid uid
  461. 104620 5 15
  462. 103867 5 27
  463. 103962 5 27
  464. 104619 5 75
  465. 104505 5 117
  466. 103853 5 250
  467. select t1.gid, t2.sid, t3.uid from t3, t2, t1 where t2.gid = t1.gid and t2.uid = t3.uid order by t3.uid, t1.gid;
  468. gid sid uid
  469. 104620 5 15
  470. 103867 5 27
  471. 103962 5 27
  472. 104619 5 75
  473. 104505 5 117
  474. 103853 5 250
  475. EXPLAIN select t1.gid, t2.sid, t3.uid from t3, t2, t1 where t2.gid = t1.gid and t2.uid = t3.uid order by t1.gid, t3.uid;
  476. id select_type table type possible_keys key key_len ref rows Extra
  477. 1 SIMPLE t1 index PRIMARY PRIMARY 4 NULL 6 Using index
  478. 1 SIMPLE t2 eq_ref PRIMARY,uid PRIMARY 4 test.t1.gid 1
  479. 1 SIMPLE t3 eq_ref PRIMARY PRIMARY 2 test.t2.uid 1 Using where; Using index
  480. EXPLAIN SELECT t1.gid, t3.uid from t1, t3 where t1.gid = t3.uid order by t1.gid,t3.skr;
  481. id select_type table type possible_keys key key_len ref rows Extra
  482. 1 SIMPLE t3 ALL PRIMARY NULL NULL NULL 6 Using temporary; Using filesort
  483. 1 SIMPLE t1 eq_ref PRIMARY PRIMARY 4 test.t3.uid 1 Using where; Using index
  484. EXPLAIN SELECT t1.gid, t2.sid, t3.uid from t2, t1, t3 where t2.gid = t1.gid and t2.uid = t3.uid order by t3.uid, t1.gid;
  485. id select_type table type possible_keys key key_len ref rows Extra
  486. 1 SIMPLE t1 index PRIMARY PRIMARY 4 NULL 6 Using index; Using temporary; Using filesort
  487. 1 SIMPLE t2 eq_ref PRIMARY,uid PRIMARY 4 test.t1.gid 1
  488. 1 SIMPLE t3 eq_ref PRIMARY PRIMARY 2 test.t2.uid 1 Using where; Using index
  489. EXPLAIN SELECT t1.gid, t3.uid from t1, t3 where t1.gid = t3.uid order by t3.skr,t1.gid;
  490. id select_type table type possible_keys key key_len ref rows Extra
  491. 1 SIMPLE t3 ALL PRIMARY NULL NULL NULL 6 Using temporary; Using filesort
  492. 1 SIMPLE t1 eq_ref PRIMARY PRIMARY 4 test.t3.uid 1 Using where; Using index
  493. EXPLAIN SELECT t1.gid, t3.uid from t1, t3 where t1.skr = t3.uid order by t1.gid,t3.skr;
  494. id select_type table type possible_keys key key_len ref rows Extra
  495. 1 SIMPLE t1 ALL NULL NULL NULL NULL 6 Using temporary; Using filesort
  496. 1 SIMPLE t3 eq_ref PRIMARY PRIMARY 2 test.t1.skr 1 Using where
  497. drop table t1,t2,t3;
  498. CREATE TABLE t1 (
  499. `titre` char(80) NOT NULL default '',
  500. `numeropost` mediumint(8) unsigned NOT NULL auto_increment,
  501. `date` datetime NOT NULL default '0000-00-00 00:00:00',
  502. `auteur` char(35) NOT NULL default '',
  503. `icone` tinyint(2) unsigned NOT NULL default '0',
  504. `lastauteur` char(35) NOT NULL default '',
  505. `nbrep` smallint(6) unsigned NOT NULL default '0',
  506. `dest` char(35) NOT NULL default '',
  507. `lu` tinyint(1) unsigned NOT NULL default '0',
  508. `vue` mediumint(8) unsigned NOT NULL default '0',
  509. `ludest` tinyint(1) unsigned NOT NULL default '0',
  510. `ouvert` tinyint(1) unsigned NOT NULL default '1',
  511. PRIMARY KEY  (`numeropost`),
  512. KEY `date` (`date`),
  513. KEY `dest` (`dest`,`ludest`),
  514. KEY `auteur` (`auteur`,`lu`),
  515. KEY `auteur_2` (`auteur`,`date`),
  516. KEY `dest_2` (`dest`,`date`)
  517. ) CHECKSUM=1;
  518. CREATE TABLE t2 (
  519. `numeropost` mediumint(8) unsigned NOT NULL default '0',
  520. `pseudo` char(35) NOT NULL default '',
  521. PRIMARY KEY  (`numeropost`,`pseudo`),
  522. KEY `pseudo` (`pseudo`)
  523. );
  524. INSERT INTO t1 (titre,auteur,dest) VALUES ('test','joce','bug');
  525. INSERT INTO t2 (numeropost,pseudo) VALUES (1,'joce'),(1,'bug');
  526. SELECT titre,t1.numeropost,auteur,icone,nbrep,0,date,vue,ouvert,lastauteur,dest FROM t2 LEFT JOIN t1 USING(numeropost) WHERE t2.pseudo='joce' ORDER BY date DESC LIMIT 0,30;
  527. titre numeropost auteur icone nbrep 0 date vue ouvert lastauteur dest
  528. test 1 joce 0 0 0 0000-00-00 00:00:00 0 1 bug
  529. SELECT titre,t1.numeropost,auteur,icone,nbrep,'0',date,vue,ouvert,lastauteur,dest FROM t2 LEFT JOIN t1 USING(numeropost) WHERE t2.pseudo='joce' ORDER BY date DESC LIMIT 0,30;
  530. titre numeropost auteur icone nbrep 0 date vue ouvert lastauteur dest
  531. test 1 joce 0 0 0 0000-00-00 00:00:00 0 1 bug
  532. drop table t1,t2;
  533. CREATE TABLE t1 (a int, b int);
  534. INSERT INTO t1 VALUES (1, 2);
  535. INSERT INTO t1 VALUES (3, 4);
  536. INSERT INTO t1 VALUES (5, NULL);
  537. SELECT * FROM t1 ORDER BY b;
  538. a b
  539. 5 NULL
  540. 1 2
  541. 3 4
  542. SELECT * FROM t1 ORDER BY b DESC;
  543. a b
  544. 3 4
  545. 1 2
  546. 5 NULL
  547. SELECT * FROM t1 ORDER BY (a + b);
  548. a b
  549. 5 NULL
  550. 1 2
  551. 3 4
  552. SELECT * FROM t1 ORDER BY (a + b) DESC;
  553. a b
  554. 3 4
  555. 1 2
  556. 5 NULL
  557. DROP TABLE t1;
  558. create table t1(id int not null auto_increment primary key, t char(12));
  559. explain select id,t from t1 order by id;
  560. id select_type table type possible_keys key key_len ref rows Extra
  561. 1 SIMPLE t1 ALL NULL NULL NULL NULL 1000 Using filesort
  562. explain select id,t from t1 force index (primary) order by id;
  563. id select_type table type possible_keys key key_len ref rows Extra
  564. 1 SIMPLE t1 index NULL PRIMARY 4 NULL 1000
  565. drop table t1;
  566. CREATE TABLE t1 (
  567. FieldKey varchar(36) NOT NULL default '',
  568. LongVal bigint(20) default NULL,
  569. StringVal mediumtext,
  570. KEY FieldKey (FieldKey),
  571. KEY LongField (FieldKey,LongVal),
  572. KEY StringField (FieldKey,StringVal(32))
  573. );
  574. INSERT INTO t1 VALUES ('0',3,'0'),('0',2,'1'),('0',1,'2'),('1',2,'1'),('1',1,'3'), ('1',0,'2'),('2',3,'0'),('2',2,'1'),('2',1,'2'),('2',3,'0'),('2',2,'1'),('2',1,'2'),('3',2,'1'),('3',1,'2'),('3','3','3');
  575. EXPLAIN SELECT * FROM t1 WHERE FieldKey = '1' ORDER BY LongVal;
  576. id select_type table type possible_keys key key_len ref rows Extra
  577. 1 SIMPLE t1 ref FieldKey,LongField,StringField LongField 36 const 3 Using where
  578. SELECT * FROM t1 WHERE FieldKey = '1' ORDER BY LongVal;
  579. FieldKey LongVal StringVal
  580. 1 0 2
  581. 1 1 3
  582. 1 2 1
  583. EXPLAIN SELECT * FROM t1 WHERE FieldKey > '2' ORDER BY LongVal;
  584. id select_type table type possible_keys key key_len ref rows Extra
  585. 1 SIMPLE t1 range FieldKey,LongField,StringField FieldKey 36 NULL 4 Using where; Using filesort
  586. SELECT * FROM t1 WHERE FieldKey > '2' ORDER BY LongVal;
  587. FieldKey LongVal StringVal
  588. 3 1 2
  589. 3 2 1
  590. 3 3 3
  591. EXPLAIN SELECT * FROM t1 WHERE FieldKey > '2' ORDER BY FieldKey, LongVal;
  592. id select_type table type possible_keys key key_len ref rows Extra
  593. 1 SIMPLE t1 range FieldKey,LongField,StringField LongField 36 NULL 4 Using where
  594. SELECT * FROM t1 WHERE FieldKey > '2' ORDER BY FieldKey, LongVal;
  595. FieldKey LongVal StringVal
  596. 3 1 2
  597. 3 2 1
  598. 3 3 3
  599. DROP TABLE t1;
  600. CREATE TABLE t1 (a INT, b INT);
  601. SET @id=0;
  602. UPDATE t1 SET a=0 ORDER BY (a=@id), b;
  603. DROP TABLE t1;
  604. CREATE TABLE t1 (  id smallint(6) unsigned NOT NULL default '0',  menu tinyint(4) NOT NULL default '0',  KEY id (id),  KEY menu (menu)) ENGINE=MyISAM;
  605. INSERT INTO t1 VALUES (11384, 2),(11392, 2);
  606. SELECT id FROM t1 WHERE id <11984 AND menu =2 ORDER BY id DESC LIMIT 1 ;
  607. id
  608. 11392
  609. drop table t1;
  610. create table t1(a int, b int, index(b));
  611. insert into t1 values (2, 1), (1, 1), (4, NULL), (3, NULL), (6, 2), (5, 2);
  612. explain select * from t1 where b=1 or b is null order by a;
  613. id select_type table type possible_keys key key_len ref rows Extra
  614. 1 SIMPLE t1 ref_or_null b b 5 const 3 Using where; Using filesort
  615. select * from t1 where b=1 or b is null order by a;
  616. a b
  617. 1 1
  618. 2 1
  619. 3 NULL
  620. 4 NULL
  621. explain select * from t1 where b=2 or b is null order by a;
  622. id select_type table type possible_keys key key_len ref rows Extra
  623. 1 SIMPLE t1 ref_or_null b b 5 const 4 Using where; Using filesort
  624. select * from t1 where b=2 or b is null order by a;
  625. a b
  626. 3 NULL
  627. 4 NULL
  628. 5 2
  629. 6 2
  630. drop table t1;
  631. create table t1 (a int not null auto_increment, b int not null, c int not null, d int not null,
  632. key(a,b,d), key(c,b,a));
  633. create table t2 like t1;
  634. insert into t1 values (NULL, 1, 2, 0), (NULL, 2, 1, 1), (NULL, 3, 4, 2), (NULL, 4, 3, 3);
  635. insert into t2 select null, b, c, d from t1;
  636. insert into t1 select null, b, c, d from t2;
  637. insert into t2 select null, b, c, d from t1;
  638. insert into t1 select null, b, c, d from t2;
  639. insert into t2 select null, b, c, d from t1;
  640. insert into t1 select null, b, c, d from t2;
  641. insert into t2 select null, b, c, d from t1;
  642. insert into t1 select null, b, c, d from t2;
  643. insert into t2 select null, b, c, d from t1;
  644. insert into t1 select null, b, c, d from t2;
  645. optimize table t1;
  646. Table Op Msg_type Msg_text
  647. test.t1 optimize status OK
  648. set @row=10;
  649. insert into t1 select 1, b, c + (@row:=@row - 1) * 10, d - @row from t2 limit 10;
  650. select * from t1 where a=1 and b in (1) order by c, b, a;
  651. a b c d
  652. 1 1 2 0
  653. 1 1 12 -1
  654. 1 1 52 -5
  655. 1 1 92 -9
  656. select * from t1 where a=1 and b in (1);
  657. a b c d
  658. 1 1 92 -9
  659. 1 1 52 -5
  660. 1 1 12 -1
  661. 1 1 2 0
  662. drop table t1, t2;
  663. create table t1 (col1 int, col int);
  664. create table t2 (col2 int, col int);
  665. insert into t1 values (1,1),(2,2),(3,3);
  666. insert into t2 values (1,3),(2,2),(3,1);
  667. select t1.* , t2.col as t2_col from t1 left join t2 on (t1.col1=t2.col2)
  668. order by col;
  669. col1 col t2_col
  670. 1 1 3
  671. 2 2 2
  672. 3 3 1
  673. select col1 as col, col from t1 order by col;
  674. ERROR 23000: Column 'col' in order clause is ambiguous
  675. select t1.col as c1, t2.col as c2 from t1, t2 where t1.col1=t2.col2
  676. order by col;
  677. ERROR 23000: Column 'col' in order clause is ambiguous
  678. select t1.col as c1, t2.col as c2 from t1, t2 where t1.col1=t2.col2
  679. order by col;
  680. ERROR 23000: Column 'col' in order clause is ambiguous
  681. select col1 from t1, t2 where t1.col1=t2.col2 order by col;
  682. ERROR 23000: Column 'col' in order clause is ambiguous
  683. select t1.col as t1_col, t2.col2 from t1, t2 where t1.col1=t2.col2
  684. order by col;
  685. ERROR 23000: Column 'col' in order clause is ambiguous
  686. select t1.col as t1_col, t2.col from t1, t2 where t1.col1=t2.col2
  687. order by col;
  688. t1_col col
  689. 3 1
  690. 2 2
  691. 1 3
  692. select col2 as c, col as c from t2 order by col;
  693. c c
  694. 3 1
  695. 2 2
  696. 1 3
  697. select col2 as col, col as col2 from t2 order by col;
  698. col col2
  699. 1 3
  700. 2 2
  701. 3 1
  702. select t2.col2, t2.col, t2.col from t2 order by col;
  703. col2 col col
  704. 3 1 1
  705. 2 2 2
  706. 1 3 3
  707. select t2.col2 as col from t2 order by t2.col;
  708. col
  709. 3
  710. 2
  711. 1
  712. select t2.col2 as col, t2.col from t2 order by t2.col;
  713. col col
  714. 3 1
  715. 2 2
  716. 1 3
  717. select t2.col2, t2.col, t2.col from t2 order by t2.col;
  718. col2 col col
  719. 3 1 1
  720. 2 2 2
  721. 1 3 3
  722. drop table t1, t2;
  723. create table t1 (a char(25));
  724. insert into t1 set a = repeat('x', 20);
  725. insert into t1 set a = concat(repeat('x', 19), 'z');
  726. insert into t1 set a = concat(repeat('x', 19), 'ab');
  727. insert into t1 set a = concat(repeat('x', 19), 'aa');
  728. set max_sort_length=20;
  729. select a from t1 order by a;
  730. a
  731. xxxxxxxxxxxxxxxxxxxab
  732. xxxxxxxxxxxxxxxxxxxaa
  733. xxxxxxxxxxxxxxxxxxxx
  734. xxxxxxxxxxxxxxxxxxxz
  735. drop table t1;
  736. create table t1 (
  737. `sid` decimal(8,0) default null,
  738. `wnid` varchar(11) not null default '',
  739. key `wnid14` (`wnid`(4)),
  740. key `wnid` (`wnid`)
  741. ) engine=myisam default charset=latin1;
  742. insert into t1 (`sid`, `wnid`) values
  743. ('10100','01019000000'),('37986','01019000000'),('37987','01019010000'),
  744. ('39560','01019090000'),('37989','01019000000'),('37990','01019011000'),
  745. ('37991','01019011000'),('37992','01019019000'),('37993','01019030000'),
  746. ('37994','01019090000'),('475','02070000000'),('25253','02071100000'),
  747. ('25255','02071100000'),('25256','02071110000'),('25258','02071130000'),
  748. ('25259','02071190000'),('25260','02071200000'),('25261','02071210000'),
  749. ('25262','02071290000'),('25263','02071300000'),('25264','02071310000'),
  750. ('25265','02071310000'),('25266','02071320000'),('25267','02071320000'),
  751. ('25269','02071330000'),('25270','02071340000'),('25271','02071350000'),
  752. ('25272','02071360000'),('25273','02071370000'),('25281','02071391000'),
  753. ('25282','02071391000'),('25283','02071399000'),('25284','02071400000'),
  754. ('25285','02071410000'),('25286','02071410000'),('25287','02071420000'),
  755. ('25288','02071420000'),('25291','02071430000'),('25290','02071440000'),
  756. ('25292','02071450000'),('25293','02071460000'),('25294','02071470000'),
  757. ('25295','02071491000'),('25296','02071491000'),('25297','02071499000');
  758. explain select * from t1 where wnid like '0101%' order by wnid;
  759. id select_type table type possible_keys key key_len ref rows Extra
  760. 1 SIMPLE t1 range wnid14,wnid wnid 11 NULL 10 Using where
  761. select * from t1 where wnid like '0101%' order by wnid;
  762. sid wnid
  763. 10100 01019000000
  764. 37986 01019000000
  765. 37989 01019000000
  766. 37987 01019010000
  767. 37990 01019011000
  768. 37991 01019011000
  769. 37992 01019019000
  770. 37993 01019030000
  771. 39560 01019090000
  772. 37994 01019090000
  773. drop table t1;
  774. CREATE TABLE t1 (a int);
  775. INSERT INTO t1 VALUES (2), (1), (1), (2), (1);
  776. SELECT a FROM t1 ORDER BY a;
  777. a
  778. 1
  779. 1
  780. 1
  781. 2
  782. 2
  783. (SELECT a FROM t1) ORDER BY a;
  784. a
  785. 1
  786. 1
  787. 1
  788. 2
  789. 2
  790. DROP TABLE t1;