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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3,t4,t5,t6;
  2. drop database if exists mysqltest;
  3. create table t1 (a int not null primary key auto_increment, message char(20));
  4. create table t2 (a int not null primary key auto_increment, message char(20));
  5. INSERT INTO t1 (message) VALUES ("Testing"),("table"),("t1");
  6. INSERT INTO t2 (message) VALUES ("Testing"),("table"),("t2");
  7. create table t3 (a int not null, b char(20), key(a)) engine=MERGE UNION=(t1,t2);
  8. select * from t3;
  9. a b
  10. 1 Testing
  11. 2 table
  12. 3 t1
  13. 1 Testing
  14. 2 table
  15. 3 t2
  16. select * from t3 order by a desc;
  17. a b
  18. 3 t1
  19. 3 t2
  20. 2 table
  21. 2 table
  22. 1 Testing
  23. 1 Testing
  24. drop table t3;
  25. insert into t1 select NULL,message from t2;
  26. insert into t2 select NULL,message from t1;
  27. insert into t1 select NULL,message from t2;
  28. insert into t2 select NULL,message from t1;
  29. insert into t1 select NULL,message from t2;
  30. insert into t2 select NULL,message from t1;
  31. insert into t1 select NULL,message from t2;
  32. insert into t2 select NULL,message from t1;
  33. insert into t1 select NULL,message from t2;
  34. insert into t2 select NULL,message from t1;
  35. insert into t1 select NULL,message from t2;
  36. create table t3 (a int not null, b char(20), key(a)) engine=MERGE UNION=(test.t1,test.t2);
  37. explain select * from t3 where a < 10;
  38. id select_type table type possible_keys key key_len ref rows Extra
  39. 1 SIMPLE t3 range a a 4 NULL 18 Using where
  40. explain select * from t3 where a > 10 and a < 20;
  41. id select_type table type possible_keys key key_len ref rows Extra
  42. 1 SIMPLE t3 range a a 4 NULL 16 Using where
  43. select * from t3 where a = 10;
  44. a b
  45. 10 Testing
  46. 10 Testing
  47. select * from t3 where a < 10;
  48. a b
  49. 1 Testing
  50. 1 Testing
  51. 2 table
  52. 2 table
  53. 3 t1
  54. 3 t2
  55. 4 Testing
  56. 4 Testing
  57. 5 table
  58. 5 table
  59. 6 t1
  60. 6 t2
  61. 7 Testing
  62. 7 Testing
  63. 8 table
  64. 8 table
  65. 9 t2
  66. 9 t2
  67. select * from t3 where a > 10 and a < 20;
  68. a b
  69. 11 table
  70. 11 table
  71. 12 t1
  72. 12 t1
  73. 13 Testing
  74. 13 Testing
  75. 14 table
  76. 14 table
  77. 15 t2
  78. 15 t2
  79. 16 Testing
  80. 16 Testing
  81. 17 table
  82. 17 table
  83. 18 t2
  84. 18 t2
  85. 19 Testing
  86. 19 Testing
  87. explain select a from t3 order by a desc limit 10;
  88. id select_type table type possible_keys key key_len ref rows Extra
  89. 1 SIMPLE t3 index NULL a 4 NULL 1131 Using index
  90. select a from t3 order by a desc limit 10;
  91. a
  92. 699
  93. 698
  94. 697
  95. 696
  96. 695
  97. 694
  98. 693
  99. 692
  100. 691
  101. 690
  102. select a from t3 order by a desc limit 300,10;
  103. a
  104. 416
  105. 415
  106. 415
  107. 414
  108. 414
  109. 413
  110. 413
  111. 412
  112. 412
  113. 411
  114. delete from t3 where a=3;
  115. select * from t3 where a < 10;
  116. a b
  117. 1 Testing
  118. 1 Testing
  119. 2 table
  120. 2 table
  121. 4 Testing
  122. 4 Testing
  123. 5 table
  124. 5 table
  125. 6 t2
  126. 6 t1
  127. 7 Testing
  128. 7 Testing
  129. 8 table
  130. 8 table
  131. 9 t2
  132. 9 t2
  133. delete from t3 where a >= 6 and a <= 8;
  134. select * from t3 where a < 10;
  135. a b
  136. 1 Testing
  137. 1 Testing
  138. 2 table
  139. 2 table
  140. 4 Testing
  141. 4 Testing
  142. 5 table
  143. 5 table
  144. 9 t2
  145. 9 t2
  146. update t3 set a=3 where a=9;
  147. select * from t3 where a < 10;
  148. a b
  149. 1 Testing
  150. 1 Testing
  151. 2 table
  152. 2 table
  153. 3 t2
  154. 3 t2
  155. 4 Testing
  156. 4 Testing
  157. 5 table
  158. 5 table
  159. update t3 set a=6 where a=7;
  160. select * from t3 where a < 10;
  161. a b
  162. 1 Testing
  163. 1 Testing
  164. 2 table
  165. 2 table
  166. 3 t2
  167. 3 t2
  168. 4 Testing
  169. 4 Testing
  170. 5 table
  171. 5 table
  172. show create table t3;
  173. Table Create Table
  174. t3 CREATE TABLE `t3` (
  175.   `a` int(11) NOT NULL default '0',
  176.   `b` char(20) default NULL,
  177.   KEY `a` (`a`)
  178. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`t2`)
  179. create table t4 (a int not null, b char(10), key(a)) engine=MERGE UNION=(t1,t2);
  180. select * from t4;
  181. ERROR HY000: Can't open file: 't4.MRG' (errno: 143)
  182. alter table t4 add column c int;
  183. ERROR HY000: Can't open file: 't4.MRG' (errno: 143)
  184. create database mysqltest;
  185. create table mysqltest.t6 (a int not null primary key auto_increment, message char(20));
  186. create table t5 (a int not null, b char(20), key(a)) engine=MERGE UNION=(test.t1,mysqltest.t6);
  187. show create table t5;
  188. Table Create Table
  189. t5 CREATE TABLE `t5` (
  190.   `a` int(11) NOT NULL default '0',
  191.   `b` char(20) default NULL,
  192.   KEY `a` (`a`)
  193. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`mysqltest`.`t6`)
  194. alter table t5 engine=myisam;
  195. drop table t5, mysqltest.t6;
  196. drop database mysqltest;
  197. drop table t4,t3,t1,t2;
  198. create table t1 (c char(10)) engine=myisam;
  199. create table t2 (c char(10)) engine=myisam;
  200. create table t3 (c char(10)) union=(t1,t2) engine=merge;
  201. insert into t1 (c) values ('test1');
  202. insert into t1 (c) values ('test1');
  203. insert into t1 (c) values ('test1');
  204. insert into t2 (c) values ('test2');
  205. insert into t2 (c) values ('test2');
  206. insert into t2 (c) values ('test2');
  207. select * from t3;
  208. c
  209. test1
  210. test1
  211. test1
  212. test2
  213. test2
  214. test2
  215. select * from t3;
  216. c
  217. test1
  218. test1
  219. test1
  220. test2
  221. test2
  222. test2
  223. delete from t3 where 1=1;
  224. select * from t3;
  225. c
  226. select * from t1;
  227. c
  228. drop table t3,t2,t1;
  229. CREATE TABLE t1 (incr int not null, othr int not null, primary key(incr));
  230. CREATE TABLE t2 (incr int not null, othr int not null, primary key(incr));
  231. CREATE TABLE t3 (incr int not null, othr int not null, primary key(incr))
  232. ENGINE=MERGE UNION=(t1,t2);
  233. SELECT * from t3;
  234. incr othr
  235. INSERT INTO t1 VALUES ( 1,10),( 3,53),( 5,21),( 7,12),( 9,17);
  236. INSERT INTO t2 VALUES ( 2,24),( 4,33),( 6,41),( 8,26),( 0,32);
  237. INSERT INTO t1 VALUES (11,20),(13,43),(15,11),(17,22),(19,37);
  238. INSERT INTO t2 VALUES (12,25),(14,31),(16,42),(18,27),(10,30);
  239. SELECT * from t3 where incr in (1,2,3,4) order by othr;
  240. incr othr
  241. 1 10
  242. 2 24
  243. 4 33
  244. 3 53
  245. alter table t3 UNION=(t1);
  246. select count(*) from t3;
  247. count(*)
  248. 10
  249. alter table t3 UNION=(t1,t2);
  250. select count(*) from t3;
  251. count(*)
  252. 20
  253. alter table t3 ENGINE=MYISAM;
  254. select count(*) from t3;
  255. count(*)
  256. 20
  257. drop table t3;
  258. CREATE TABLE t3 (incr int not null, othr int not null, primary key(incr))
  259. ENGINE=MERGE UNION=(t1,t2);
  260. show create table t3;
  261. Table Create Table
  262. t3 CREATE TABLE `t3` (
  263.   `incr` int(11) NOT NULL default '0',
  264.   `othr` int(11) NOT NULL default '0',
  265.   PRIMARY KEY  (`incr`)
  266. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`t2`)
  267. alter table t3 drop primary key;
  268. show create table t3;
  269. Table Create Table
  270. t3 CREATE TABLE `t3` (
  271.   `incr` int(11) NOT NULL default '0',
  272.   `othr` int(11) NOT NULL default '0'
  273. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`t2`)
  274. drop table t3,t2,t1;
  275. create table t1 (a int not null, key(a)) engine=merge;
  276. select * from t1;
  277. a
  278. drop table t1;
  279. create table t1 (a int not null, b int not null, key(a,b));
  280. create table t2 (a int not null, b int not null, key(a,b));
  281. create table t3 (a int not null, b int not null, key(a,b)) ENGINE=MERGE UNION=(t1,t2);
  282. insert into t1 values (1,2),(2,1),(0,0),(4,4),(5,5),(6,6);
  283. insert into t2 values (1,1),(2,2),(0,0),(4,4),(5,5),(6,6);
  284. flush tables;
  285. select * from t3 where a=1 order by b limit 2;
  286. a b
  287. 1 1
  288. 1 2
  289. drop table t3,t1,t2;
  290. create table t1 (a int not null, b int not null auto_increment, primary key(a,b));
  291. create table t2 (a int not null, b int not null auto_increment, primary key(a,b));
  292. create table t3 (a int not null, b int not null, key(a,b)) UNION=(t1,t2) INSERT_METHOD=NO;
  293. create table t4 (a int not null, b int not null, key(a,b)) ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=NO;
  294. create table t5 (a int not null, b int not null auto_increment, primary key(a,b)) ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=FIRST;
  295. create table t6 (a int not null, b int not null auto_increment, primary key(a,b)) ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;
  296. show create table t3;
  297. Table Create Table
  298. t3 CREATE TABLE `t3` (
  299.   `a` int(11) NOT NULL default '0',
  300.   `b` int(11) NOT NULL default '0',
  301.   KEY `a` (`a`,`b`)
  302. ) ENGINE=MyISAM DEFAULT CHARSET=latin1
  303. show create table t4;
  304. Table Create Table
  305. t4 CREATE TABLE `t4` (
  306.   `a` int(11) NOT NULL default '0',
  307.   `b` int(11) NOT NULL default '0',
  308.   KEY `a` (`a`,`b`)
  309. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`t2`)
  310. show create table t5;
  311. Table Create Table
  312. t5 CREATE TABLE `t5` (
  313.   `a` int(11) NOT NULL default '0',
  314.   `b` int(11) NOT NULL auto_increment,
  315.   PRIMARY KEY  (`a`,`b`)
  316. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 INSERT_METHOD=FIRST UNION=(`t1`,`t2`)
  317. show create table t6;
  318. Table Create Table
  319. t6 CREATE TABLE `t6` (
  320.   `a` int(11) NOT NULL default '0',
  321.   `b` int(11) NOT NULL auto_increment,
  322.   PRIMARY KEY  (`a`,`b`)
  323. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 INSERT_METHOD=LAST UNION=(`t1`,`t2`)
  324. insert into t1 values (1,NULL),(1,NULL),(1,NULL),(1,NULL);
  325. insert into t2 values (2,NULL),(2,NULL),(2,NULL),(2,NULL);
  326. select * from t3 order by b,a limit 3;
  327. a b
  328. select * from t4 order by b,a limit 3;
  329. a b
  330. 1 1
  331. 2 1
  332. 1 2
  333. select * from t5 order by b,a limit 3,3;
  334. a b
  335. 2 2
  336. 1 3
  337. 2 3
  338. select * from t6 order by b,a limit 6,3;
  339. a b
  340. 1 4
  341. 2 4
  342. insert into t5 values (5,1),(5,2);
  343. insert into t6 values (6,1),(6,2);
  344. select * from t1 order by a,b;
  345. a b
  346. 1 1
  347. 1 2
  348. 1 3
  349. 1 4
  350. 5 1
  351. 5 2
  352. select * from t2 order by a,b;
  353. a b
  354. 2 1
  355. 2 2
  356. 2 3
  357. 2 4
  358. 6 1
  359. 6 2
  360. select * from t4 order by a,b;
  361. a b
  362. 1 1
  363. 1 2
  364. 1 3
  365. 1 4
  366. 2 1
  367. 2 2
  368. 2 3
  369. 2 4
  370. 5 1
  371. 5 2
  372. 6 1
  373. 6 2
  374. insert into t3 values (3,1),(3,2),(3,3),(3,4);
  375. select * from t3 order by a,b;
  376. a b
  377. 3 1
  378. 3 2
  379. 3 3
  380. 3 4
  381. alter table t4 UNION=(t1,t2,t3);
  382. show create table t4;
  383. Table Create Table
  384. t4 CREATE TABLE `t4` (
  385.   `a` int(11) NOT NULL default '0',
  386.   `b` int(11) NOT NULL default '0',
  387.   KEY `a` (`a`,`b`)
  388. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 UNION=(`t1`,`t2`,`t3`)
  389. select * from t4 order by a,b;
  390. a b
  391. 1 1
  392. 1 2
  393. 1 3
  394. 1 4
  395. 2 1
  396. 2 2
  397. 2 3
  398. 2 4
  399. 3 1
  400. 3 2
  401. 3 3
  402. 3 4
  403. 5 1
  404. 5 2
  405. 6 1
  406. 6 2
  407. alter table t4 INSERT_METHOD=FIRST;
  408. show create table t4;
  409. Table Create Table
  410. t4 CREATE TABLE `t4` (
  411.   `a` int(11) NOT NULL default '0',
  412.   `b` int(11) NOT NULL default '0',
  413.   KEY `a` (`a`,`b`)
  414. ) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 INSERT_METHOD=FIRST UNION=(`t1`,`t2`,`t3`)
  415. insert into t4 values (4,1),(4,2);
  416. select * from t1 order by a,b;
  417. a b
  418. 1 1
  419. 1 2
  420. 1 3
  421. 1 4
  422. 4 1
  423. 4 2
  424. 5 1
  425. 5 2
  426. select * from t2 order by a,b;
  427. a b
  428. 2 1
  429. 2 2
  430. 2 3
  431. 2 4
  432. 6 1
  433. 6 2
  434. select * from t3 order by a,b;
  435. a b
  436. 3 1
  437. 3 2
  438. 3 3
  439. 3 4
  440. select * from t4 order by a,b;
  441. a b
  442. 1 1
  443. 1 2
  444. 1 3
  445. 1 4
  446. 2 1
  447. 2 2
  448. 2 3
  449. 2 4
  450. 3 1
  451. 3 2
  452. 3 3
  453. 3 4
  454. 4 1
  455. 4 2
  456. 5 1
  457. 5 2
  458. 6 1
  459. 6 2
  460. select * from t5 order by a,b;
  461. a b
  462. 1 1
  463. 1 2
  464. 1 3
  465. 1 4
  466. 2 1
  467. 2 2
  468. 2 3
  469. 2 4
  470. 4 1
  471. 4 2
  472. 5 1
  473. 5 2
  474. 6 1
  475. 6 2
  476. select 1;
  477. 1
  478. 1
  479. insert into t5 values (1,NULL),(5,NULL);
  480. insert into t6 values (2,NULL),(6,NULL);
  481. select * from t1 order by a,b;
  482. a b
  483. 1 1
  484. 1 2
  485. 1 3
  486. 1 4
  487. 1 5
  488. 4 1
  489. 4 2
  490. 5 1
  491. 5 2
  492. 5 3
  493. select * from t2 order by a,b;
  494. a b
  495. 2 1
  496. 2 2
  497. 2 3
  498. 2 4
  499. 2 5
  500. 6 1
  501. 6 2
  502. 6 3
  503. select * from t5 order by a,b;
  504. a b
  505. 1 1
  506. 1 2
  507. 1 3
  508. 1 4
  509. 1 5
  510. 2 1
  511. 2 2
  512. 2 3
  513. 2 4
  514. 2 5
  515. 4 1
  516. 4 2
  517. 5 1
  518. 5 2
  519. 5 3
  520. 6 1
  521. 6 2
  522. 6 3
  523. select * from t6 order by a,b;
  524. a b
  525. 1 1
  526. 1 2
  527. 1 3
  528. 1 4
  529. 1 5
  530. 2 1
  531. 2 2
  532. 2 3
  533. 2 4
  534. 2 5
  535. 4 1
  536. 4 2
  537. 5 1
  538. 5 2
  539. 5 3
  540. 6 1
  541. 6 2
  542. 6 3
  543. insert into t1 values (99,NULL);
  544. select * from t4 where a+0 > 90;
  545. a b
  546. 99 1
  547. insert t5 values (1,1);
  548. ERROR 23000: Duplicate entry '1-1' for key 1
  549. insert t6 values (2,1);
  550. ERROR 23000: Duplicate entry '2-1' for key 1
  551. insert t5 values (1,1) on duplicate key update b=b+10;
  552. insert t6 values (2,1) on duplicate key update b=b+20;
  553. select * from t5 where a < 3;
  554. a b
  555. 1 2
  556. 1 3
  557. 1 4
  558. 1 5
  559. 1 11
  560. 2 2
  561. 2 3
  562. 2 4
  563. 2 5
  564. 2 21
  565. drop table t6, t5, t4, t3, t2, t1;
  566. CREATE TABLE t1 (  a int(11) NOT NULL default '0',  b int(11) NOT NULL default '0',  PRIMARY KEY  (a,b)) ENGINE=MyISAM;
  567. INSERT INTO t1 VALUES (1,1), (2,1);
  568. CREATE TABLE t2 (  a int(11) NOT NULL default '0',  b int(11) NOT NULL default '0',  PRIMARY KEY  (a,b)) ENGINE=MyISAM;
  569. INSERT INTO t2 VALUES (1,2), (2,2);
  570. CREATE TABLE t3 (  a int(11) NOT NULL default '0',  b int(11) NOT NULL default '0',  KEY a (a,b)) ENGINE=MRG_MyISAM UNION=(t1,t2);
  571. select max(b) from t3 where a = 2;
  572. max(b)
  573. 2
  574. select max(b) from t1 where a = 2;
  575. max(b)
  576. 1
  577. drop table t3,t1,t2;
  578. create table t1 (a int not null);
  579. create table t2 (a int not null);
  580. insert into t1 values (1);
  581. insert into t2 values (2);
  582. create temporary table t3 (a int not null) ENGINE=MERGE UNION=(t1,t2);
  583. select * from t3;
  584. a
  585. 1
  586. 2
  587. create temporary table t4 (a int not null);
  588. create temporary table t5 (a int not null);
  589. insert into t4 values (1);
  590. insert into t5 values (2);
  591. create temporary table t6 (a int not null) ENGINE=MERGE UNION=(t4,t5);
  592. select * from t6;
  593. a
  594. 1
  595. 2
  596. drop table t6, t3, t1, t2, t4, t5;
  597. CREATE TABLE t1 (
  598. fileset_id tinyint(3) unsigned NOT NULL default '0',
  599. file_code varchar(32) NOT NULL default '',
  600. fileset_root_id tinyint(3) unsigned NOT NULL default '0',
  601. PRIMARY KEY  (fileset_id,file_code),
  602. KEY files (fileset_id,fileset_root_id)
  603. ) ENGINE=MyISAM;
  604. INSERT INTO t1 VALUES (2, '0000000111', 1), (2, '0000000112', 1), (2, '0000000113', 1),
  605. (2, '0000000114', 1), (2, '0000000115', 1), (2, '0000000116', 1), (2, '0000000117', 1),
  606. (2, '0000000118', 1), (2, '0000000119', 1), (2, '0000000120', 1);
  607. CREATE TABLE t2 (
  608. fileset_id tinyint(3) unsigned NOT NULL default '0',
  609. file_code varchar(32) NOT NULL default '',
  610. fileset_root_id tinyint(3) unsigned NOT NULL default '0',
  611. PRIMARY KEY  (fileset_id,file_code),
  612. KEY files (fileset_id,fileset_root_id)
  613. ) ENGINE=MRG_MyISAM UNION=(t1);
  614. EXPLAIN SELECT * FROM t2 IGNORE INDEX (files) WHERE fileset_id = 2
  615. AND file_code BETWEEN '0000000115' AND '0000000120' LIMIT 1;
  616. id select_type table type possible_keys key key_len ref rows Extra
  617. 1 SIMPLE t2 range PRIMARY PRIMARY 33 NULL 5 Using where
  618. EXPLAIN SELECT * FROM t2 WHERE fileset_id = 2
  619. AND file_code BETWEEN '0000000115' AND '0000000120' LIMIT 1;
  620. id select_type table type possible_keys key key_len ref rows Extra
  621. 1 SIMPLE t2 range PRIMARY,files PRIMARY 33 NULL 5 Using where
  622. EXPLAIN SELECT * FROM t1 WHERE fileset_id = 2
  623. AND file_code BETWEEN '0000000115' AND '0000000120' LIMIT 1;
  624. id select_type table type possible_keys key key_len ref rows Extra
  625. 1 SIMPLE t1 range PRIMARY,files PRIMARY 33 NULL 5 Using where
  626. EXPLAIN SELECT * FROM t2 WHERE fileset_id = 2
  627. AND file_code = '0000000115' LIMIT 1;
  628. id select_type table type possible_keys key key_len ref rows Extra
  629. 1 SIMPLE t2 const PRIMARY,files PRIMARY 33 const,const 1
  630. DROP TABLE t2, t1;
  631. create table t1 (x int, y int, index xy(x, y));
  632. create table t2 (x int, y int, index xy(x, y));
  633. create table t3 (x int, y int, index xy(x, y)) engine=merge union=(t1,t2);
  634. insert into t1 values(1, 2);
  635. insert into t2 values(1, 3);
  636. select * from t3 where x = 1 and y < 5 order by y;
  637. x y
  638. 1 2
  639. 1 3
  640. select * from t3 where x = 1 and y < 5 order by y desc;
  641. x y
  642. 1 3
  643. 1 2
  644. drop table t1,t2,t3;
  645. create table t1 (a int);
  646. create table t2 (a int);
  647. insert into t1 values (0);
  648. insert into t2 values (1);
  649. create table t3 engine=merge union=(t1, t2) select * from t1;
  650. ERROR HY000: You can't specify target table 't1' for update in FROM clause
  651. create table t3 engine=merge union=(t1, t2) select * from t2;
  652. ERROR HY000: You can't specify target table 't2' for update in FROM clause
  653. drop table t1, t2;
  654. create table t1 (
  655. a double(14,4),
  656. b varchar(10),
  657. index (a,b)
  658. ) engine=merge union=(t2,t3);
  659. create table t2 (
  660. a double(14,4),
  661. b varchar(10),
  662. index (a,b)
  663. ) engine=myisam;
  664. create table t3 (
  665. a double(14,4),
  666. b varchar(10),
  667. index (a,b)
  668. ) engine=myisam;
  669. insert into t2 values ( null, '');
  670. insert into t2 values ( 9999999999.999, '');
  671. insert into t3 select * from t2;
  672. select min(a), max(a) from t1;
  673. min(a) max(a)
  674. 9999999999.9990 9999999999.9990
  675. flush tables;
  676. select min(a), max(a) from t1;
  677. min(a) max(a)
  678. 9999999999.9990 9999999999.9990
  679. drop table t1, t2, t3;
  680. create table t1 (a int,b int,c int, index (a,b,c));
  681. create table t2 (a int,b int,c int, index (a,b,c));
  682. create table t3 (a int,b int,c int, index (a,b,c))
  683. engine=merge union=(t1 ,t2);
  684. insert into t1 (a,b,c) values (1,1,0),(1,2,0);
  685. insert into t2 (a,b,c) values (1,1,1),(1,2,1);
  686. explain select a,b,c from t3 force index (a) where a=1 order by a,b,c;
  687. id select_type table type possible_keys key key_len ref rows Extra
  688. 1 SIMPLE t3 ref a a 5 const 2 Using where; Using index
  689. select a,b,c from t3 force index (a) where a=1 order by a,b,c;
  690. a b c
  691. 1 1 0
  692. 1 1 1
  693. 1 2 0
  694. 1 2 1
  695. explain select a,b,c from t3 force index (a) where a=1 order by a desc, b desc, c desc;
  696. id select_type table type possible_keys key key_len ref rows Extra
  697. 1 SIMPLE t3 ref a a 5 const 2 Using where; Using index
  698. select a,b,c from t3 force index (a) where a=1 order by a desc, b desc, c desc;
  699. a b c
  700. 1 2 1
  701. 1 2 0
  702. 1 1 1
  703. 1 1 0
  704. show index from t3;
  705. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  706. t3 1 a 1 a A NULL NULL NULL YES BTREE
  707. t3 1 a 2 b A NULL NULL NULL YES BTREE
  708. t3 1 a 3 c A NULL NULL NULL YES BTREE
  709. drop table t1, t2, t3;
  710. CREATE TABLE t1 ( a INT AUTO_INCREMENT PRIMARY KEY, b VARCHAR(10), UNIQUE (b) )
  711. ENGINE=MyISAM;
  712. CREATE TABLE t2 ( a INT AUTO_INCREMENT, b VARCHAR(10), INDEX (a), INDEX (b) )
  713. ENGINE=MERGE UNION (t1) INSERT_METHOD=FIRST;
  714. INSERT INTO t2 (b) VALUES (1) ON DUPLICATE KEY UPDATE b=2;
  715. INSERT INTO t2 (b) VALUES (1) ON DUPLICATE KEY UPDATE b=3;
  716. SELECT b FROM t2;
  717. b
  718. 3
  719. DROP TABLE t1, t2;