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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3,t4;
  2. drop database if exists mysqltest;
  3. create table t1 (id int unsigned not null auto_increment, code tinyint unsigned not null, name char(20) not null, primary key (id), key (code), unique (name)) engine=innodb;
  4. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt');
  5. select id, code, name from t1 order by id;
  6. id code name
  7. 1 1 Tim
  8. 2 1 Monty
  9. 3 2 David
  10. 4 2 Erik
  11. 5 3 Sasha
  12. 6 3 Jeremy
  13. 7 4 Matt
  14. update ignore t1 set id = 8, name = 'Sinisa' where id < 3;
  15. select id, code, name from t1 order by id;
  16. id code name
  17. 2 1 Monty
  18. 3 2 David
  19. 4 2 Erik
  20. 5 3 Sasha
  21. 6 3 Jeremy
  22. 7 4 Matt
  23. 8 1 Sinisa
  24. update ignore t1 set id = id + 10, name = 'Ralph' where id < 4;
  25. select id, code, name from t1 order by id;
  26. id code name
  27. 3 2 David
  28. 4 2 Erik
  29. 5 3 Sasha
  30. 6 3 Jeremy
  31. 7 4 Matt
  32. 8 1 Sinisa
  33. 12 1 Ralph
  34. drop table t1;
  35. CREATE TABLE t1 (
  36. id int(11) NOT NULL auto_increment,
  37. parent_id int(11) DEFAULT '0' NOT NULL,
  38. level tinyint(4) DEFAULT '0' NOT NULL,
  39. PRIMARY KEY (id),
  40. KEY parent_id (parent_id),
  41. KEY level (level)
  42. ) engine=innodb;
  43. INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1),(179,5,2);
  44. update t1 set parent_id=parent_id+100;
  45. select * from t1 where parent_id=102;
  46. id parent_id level
  47. 8 102 2
  48. 9 102 2
  49. 15 102 2
  50. update t1 set id=id+1000;
  51. update t1 set id=1024 where id=1009;
  52. Got one of the listed errors
  53. select * from t1;
  54. id parent_id level
  55. 1001 100 0
  56. 1002 101 1
  57. 1003 101 1
  58. 1004 101 1
  59. 1005 101 1
  60. 1006 101 1
  61. 1007 101 1
  62. 1008 102 2
  63. 1009 102 2
  64. 1015 102 2
  65. 1016 103 2
  66. 1017 103 2
  67. 1018 103 2
  68. 1019 103 2
  69. 1020 103 2
  70. 1021 104 2
  71. 1022 104 2
  72. 1024 104 2
  73. 1025 105 2
  74. 1026 105 2
  75. 1027 105 2
  76. 1028 105 2
  77. 1029 105 2
  78. 1030 105 2
  79. 1031 106 2
  80. 1032 106 2
  81. 1033 106 2
  82. 1034 106 2
  83. 1035 106 2
  84. 1036 107 2
  85. 1037 107 2
  86. 1038 107 2
  87. 1040 107 2
  88. 1157 100 0
  89. 1179 105 2
  90. 1183 104 2
  91. 1193 105 2
  92. 1202 107 2
  93. 1203 107 2
  94. update ignore t1 set id=id+1;
  95. select * from t1;
  96. id parent_id level
  97. 1001 100 0
  98. 1002 101 1
  99. 1003 101 1
  100. 1004 101 1
  101. 1005 101 1
  102. 1006 101 1
  103. 1007 101 1
  104. 1008 102 2
  105. 1010 102 2
  106. 1015 102 2
  107. 1016 103 2
  108. 1017 103 2
  109. 1018 103 2
  110. 1019 103 2
  111. 1020 103 2
  112. 1021 104 2
  113. 1023 104 2
  114. 1024 104 2
  115. 1025 105 2
  116. 1026 105 2
  117. 1027 105 2
  118. 1028 105 2
  119. 1029 105 2
  120. 1030 105 2
  121. 1031 106 2
  122. 1032 106 2
  123. 1033 106 2
  124. 1034 106 2
  125. 1035 106 2
  126. 1036 107 2
  127. 1037 107 2
  128. 1039 107 2
  129. 1041 107 2
  130. 1158 100 0
  131. 1180 105 2
  132. 1184 104 2
  133. 1194 105 2
  134. 1202 107 2
  135. 1204 107 2
  136. update ignore t1 set id=1023 where id=1010;
  137. select * from t1 where parent_id=102;
  138. id parent_id level
  139. 1008 102 2
  140. 1010 102 2
  141. 1015 102 2
  142. explain select level from t1 where level=1;
  143. id select_type table type possible_keys key key_len ref rows Extra
  144. 1 SIMPLE t1 ref level level 1 const # Using where; Using index
  145. explain select level,id from t1 where level=1;
  146. id select_type table type possible_keys key key_len ref rows Extra
  147. 1 SIMPLE t1 ref level level 1 const # Using where; Using index
  148. explain select level,id,parent_id from t1 where level=1;
  149. id select_type table type possible_keys key key_len ref rows Extra
  150. 1 SIMPLE t1 ref level level 1 const # Using where
  151. select level,id from t1 where level=1;
  152. level id
  153. 1 1002
  154. 1 1003
  155. 1 1004
  156. 1 1005
  157. 1 1006
  158. 1 1007
  159. select level,id,parent_id from t1 where level=1;
  160. level id parent_id
  161. 1 1002 101
  162. 1 1003 101
  163. 1 1004 101
  164. 1 1005 101
  165. 1 1006 101
  166. 1 1007 101
  167. optimize table t1;
  168. Table Op Msg_type Msg_text
  169. test.t1 optimize status OK
  170. show keys from t1;
  171. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  172. t1 0 PRIMARY 1 id A # NULL NULL BTREE
  173. t1 1 parent_id 1 parent_id A # NULL NULL BTREE
  174. t1 1 level 1 level A # NULL NULL BTREE
  175. drop table t1;
  176. CREATE TABLE t1 (
  177. gesuchnr int(11) DEFAULT '0' NOT NULL,
  178. benutzer_id int(11) DEFAULT '0' NOT NULL,
  179. PRIMARY KEY (gesuchnr,benutzer_id)
  180. ) engine=innodb;
  181. replace into t1 (gesuchnr,benutzer_id) values (2,1);
  182. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  183. replace into t1 (gesuchnr,benutzer_id) values (1,1);
  184. select * from t1;
  185. gesuchnr benutzer_id
  186. 1 1
  187. 2 1
  188. drop table t1;
  189. create table t1 (a int) engine=innodb;
  190. insert into t1 values (1), (2);
  191. optimize table t1;
  192. Table Op Msg_type Msg_text
  193. test.t1 optimize status OK
  194. delete from t1 where a = 1;
  195. select * from t1;
  196. a
  197. 2
  198. check table t1;
  199. Table Op Msg_type Msg_text
  200. test.t1 check status OK
  201. drop table t1;
  202. create table t1 (a int,b varchar(20)) engine=innodb;
  203. insert into t1 values (1,""), (2,"testing");
  204. delete from t1 where a = 1;
  205. select * from t1;
  206. a b
  207. 2 testing
  208. create index skr on t1 (a);
  209. insert into t1 values (3,""), (4,"testing");
  210. analyze table t1;
  211. Table Op Msg_type Msg_text
  212. test.t1 analyze status OK
  213. show keys from t1;
  214. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  215. t1 1 skr 1 a A # NULL NULL YES BTREE
  216. drop table t1;
  217. create table t1 (a int,b varchar(20),key(a)) engine=innodb;
  218. insert into t1 values (1,""), (2,"testing");
  219. select * from t1 where a = 1;
  220. a b
  221. 1
  222. drop table t1;
  223. create table t1 (n int not null primary key) engine=innodb;
  224. set autocommit=0;
  225. insert into t1 values (4);
  226. rollback;
  227. select n, "after rollback" from t1;
  228. n after rollback
  229. insert into t1 values (4);
  230. commit;
  231. select n, "after commit" from t1;
  232. n after commit
  233. 4 after commit
  234. commit;
  235. insert into t1 values (5);
  236. insert into t1 values (4);
  237. ERROR 23000: Duplicate entry '4' for key 1
  238. commit;
  239. select n, "after commit" from t1;
  240. n after commit
  241. 4 after commit
  242. 5 after commit
  243. set autocommit=1;
  244. insert into t1 values (6);
  245. insert into t1 values (4);
  246. ERROR 23000: Duplicate entry '4' for key 1
  247. select n from t1;
  248. n
  249. 4
  250. 5
  251. 6
  252. rollback;
  253. drop table t1;
  254. create table t1 (n int not null primary key) engine=innodb;
  255. start transaction;
  256. insert into t1 values (4);
  257. flush tables with read lock;
  258. commit;
  259. unlock tables;
  260. commit;
  261. select * from t1;
  262. n
  263. 4
  264. drop table t1;
  265. create table t1 ( id int NOT NULL PRIMARY KEY, nom varchar(64)) engine=innodb;
  266. begin;
  267. insert into t1 values(1,'hamdouni');
  268. select id as afterbegin_id,nom as afterbegin_nom from t1;
  269. afterbegin_id afterbegin_nom
  270. 1 hamdouni
  271. rollback;
  272. select id as afterrollback_id,nom as afterrollback_nom from t1;
  273. afterrollback_id afterrollback_nom
  274. set autocommit=0;
  275. insert into t1 values(2,'mysql');
  276. select id as afterautocommit0_id,nom as afterautocommit0_nom from t1;
  277. afterautocommit0_id afterautocommit0_nom
  278. 2 mysql
  279. rollback;
  280. select id as afterrollback_id,nom as afterrollback_nom from t1;
  281. afterrollback_id afterrollback_nom
  282. set autocommit=1;
  283. drop table t1;
  284. CREATE TABLE t1 (id char(8) not null primary key, val int not null) engine=innodb;
  285. insert into t1 values ('pippo', 12);
  286. insert into t1 values ('pippo', 12);
  287. ERROR 23000: Duplicate entry 'pippo' for key 1
  288. delete from t1;
  289. delete from t1 where id = 'pippo';
  290. select * from t1;
  291. id val
  292. insert into t1 values ('pippo', 12);
  293. set autocommit=0;
  294. delete from t1;
  295. rollback;
  296. select * from t1;
  297. id val
  298. pippo 12
  299. delete from t1;
  300. commit;
  301. select * from t1;
  302. id val
  303. drop table t1;
  304. create table t1 (a integer) engine=innodb;
  305. start transaction;
  306. rename table t1 to t2;
  307. create table t1 (b integer) engine=innodb;
  308. insert into t1 values (1);
  309. rollback;
  310. drop table t1;
  311. rename table t2 to t1;
  312. drop table t1;
  313. set autocommit=1;
  314. CREATE TABLE t1 (ID INTEGER NOT NULL PRIMARY KEY, NAME VARCHAR(64)) ENGINE=innodb;
  315. INSERT INTO t1 VALUES (1, 'Jochen');
  316. select * from t1;
  317. ID NAME
  318. 1 Jochen
  319. drop table t1;
  320. CREATE TABLE t1 ( _userid VARCHAR(60) NOT NULL PRIMARY KEY) ENGINE=innodb;
  321. set autocommit=0;
  322. INSERT INTO t1  SET _userid='marc@anyware.co.uk';
  323. COMMIT;
  324. SELECT * FROM t1;
  325. _userid
  326. marc@anyware.co.uk
  327. SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
  328. _userid
  329. marc@anyware.co.uk
  330. drop table t1;
  331. set autocommit=1;
  332. CREATE TABLE t1 (
  333. user_id int(10) DEFAULT '0' NOT NULL,
  334. name varchar(100),
  335. phone varchar(100),
  336. ref_email varchar(100) DEFAULT '' NOT NULL,
  337. detail varchar(200),
  338. PRIMARY KEY (user_id,ref_email)
  339. )engine=innodb;
  340. INSERT INTO t1 VALUES (10292,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10292,'shirish','2333604','shirish@yahoo.com','ddsds'),(10292,'sonali','323232','sonali@bolly.com','filmstar');
  341. select * from t1 where user_id=10292;
  342. user_id name phone ref_email detail
  343. 10292 sanjeev 29153373 sansh777@hotmail.com xxx
  344. 10292 shirish 2333604 shirish@yahoo.com ddsds
  345. 10292 sonali 323232 sonali@bolly.com filmstar
  346. INSERT INTO t1 VALUES (10291,'sanjeev','29153373','sansh777@hotmail.com','xxx'),(10293,'shirish','2333604','shirish@yahoo.com','ddsds');
  347. select * from t1 where user_id=10292;
  348. user_id name phone ref_email detail
  349. 10292 sanjeev 29153373 sansh777@hotmail.com xxx
  350. 10292 shirish 2333604 shirish@yahoo.com ddsds
  351. 10292 sonali 323232 sonali@bolly.com filmstar
  352. select * from t1 where user_id>=10292;
  353. user_id name phone ref_email detail
  354. 10292 sanjeev 29153373 sansh777@hotmail.com xxx
  355. 10292 shirish 2333604 shirish@yahoo.com ddsds
  356. 10292 sonali 323232 sonali@bolly.com filmstar
  357. 10293 shirish 2333604 shirish@yahoo.com ddsds
  358. select * from t1 where user_id>10292;
  359. user_id name phone ref_email detail
  360. 10293 shirish 2333604 shirish@yahoo.com ddsds
  361. select * from t1 where user_id<10292;
  362. user_id name phone ref_email detail
  363. 10291 sanjeev 29153373 sansh777@hotmail.com xxx
  364. drop table t1;
  365. CREATE TABLE t1 (a int not null, b int not null,c int not null,
  366. key(a),primary key(a,b), unique(c),key(a),unique(b));
  367. show index from t1;
  368. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  369. t1 0 PRIMARY 1 a A # NULL NULL BTREE
  370. t1 0 PRIMARY 2 b A # NULL NULL BTREE
  371. t1 0 c 1 c A # NULL NULL BTREE
  372. t1 0 b 1 b A # NULL NULL BTREE
  373. t1 1 a 1 a A # NULL NULL BTREE
  374. t1 1 a_2 1 a A # NULL NULL BTREE
  375. drop table t1;
  376. create table t1 (col1 int not null, col2 char(4) not null, primary key(col1));
  377. alter table t1 engine=innodb;
  378. insert into t1 values ('1','1'),('5','2'),('2','3'),('3','4'),('4','4');
  379. select * from t1;
  380. col1 col2
  381. 1 1
  382. 2 3
  383. 3 4
  384. 4 4
  385. 5 2
  386. update t1 set col2='7' where col1='4';
  387. select * from t1;
  388. col1 col2
  389. 1 1
  390. 2 3
  391. 3 4
  392. 4 7
  393. 5 2
  394. alter table t1 add co3 int not null;
  395. select * from t1;
  396. col1 col2 co3
  397. 1 1 0
  398. 2 3 0
  399. 3 4 0
  400. 4 7 0
  401. 5 2 0
  402. update t1 set col2='9' where col1='2';
  403. select * from t1;
  404. col1 col2 co3
  405. 1 1 0
  406. 2 9 0
  407. 3 4 0
  408. 4 7 0
  409. 5 2 0
  410. drop table t1;
  411. create table t1 (a int not null , b int, primary key (a)) engine = innodb;
  412. create table t2 (a int not null , b int, primary key (a)) engine = myisam;
  413. insert into t1 VALUES (1,3) , (2,3), (3,3);
  414. select * from t1;
  415. a b
  416. 1 3
  417. 2 3
  418. 3 3
  419. insert into t2 select * from t1;
  420. select * from t2;
  421. a b
  422. 1 3
  423. 2 3
  424. 3 3
  425. delete from t1 where b = 3;
  426. select * from t1;
  427. a b
  428. insert into t1 select * from t2;
  429. select * from t1;
  430. a b
  431. 1 3
  432. 2 3
  433. 3 3
  434. select * from t2;
  435. a b
  436. 1 3
  437. 2 3
  438. 3 3
  439. drop table t1,t2;
  440. CREATE TABLE t1 (
  441. id int(11) NOT NULL auto_increment,
  442. ggid varchar(32) binary DEFAULT '' NOT NULL,
  443. email varchar(64) DEFAULT '' NOT NULL,
  444. passwd varchar(32) binary DEFAULT '' NOT NULL,
  445. PRIMARY KEY (id),
  446. UNIQUE ggid (ggid)
  447. ) ENGINE=innodb;
  448. insert into t1 (ggid,passwd) values ('test1','xxx');
  449. insert into t1 (ggid,passwd) values ('test2','yyy');
  450. insert into t1 (ggid,passwd) values ('test2','this will fail');
  451. ERROR 23000: Duplicate entry 'test2' for key 2
  452. insert into t1 (ggid,id) values ('this will fail',1);
  453. ERROR 23000: Duplicate entry '1' for key 1
  454. select * from t1 where ggid='test1';
  455. id ggid email passwd
  456. 1 test1 xxx
  457. select * from t1 where passwd='xxx';
  458. id ggid email passwd
  459. 1 test1 xxx
  460. select * from t1 where id=2;
  461. id ggid email passwd
  462. 2 test2 yyy
  463. replace into t1 (ggid,id) values ('this will work',1);
  464. replace into t1 (ggid,passwd) values ('test2','this will work');
  465. update t1 set id=100,ggid='test2' where id=1;
  466. ERROR 23000: Duplicate entry 'test2' for key 2
  467. select * from t1;
  468. id ggid email passwd
  469. 1 this will work
  470. 3 test2 this will work
  471. select * from t1 where id=1;
  472. id ggid email passwd
  473. 1 this will work
  474. select * from t1 where id=999;
  475. id ggid email passwd
  476. drop table t1;
  477. CREATE TABLE t1 (
  478. user_name varchar(12),
  479. password text,
  480. subscribed char(1),
  481. user_id int(11) DEFAULT '0' NOT NULL,
  482. quota bigint(20),
  483. weight double,
  484. access_date date,
  485. access_time time,
  486. approved datetime,
  487. dummy_primary_key int(11) NOT NULL auto_increment,
  488. PRIMARY KEY (dummy_primary_key)
  489. ) ENGINE=innodb;
  490. INSERT INTO t1 VALUES ('user_0','somepassword','N',0,0,0,'2000-09-07','23:06:59','2000-09-07 23:06:59',1);
  491. INSERT INTO t1 VALUES ('user_1','somepassword','Y',1,1,1,'2000-09-07','23:06:59','2000-09-07 23:06:59',2);
  492. INSERT INTO t1 VALUES ('user_2','somepassword','N',2,2,1.4142135623731,'2000-09-07','23:06:59','2000-09-07 23:06:59',3);
  493. INSERT INTO t1 VALUES ('user_3','somepassword','Y',3,3,1.7320508075689,'2000-09-07','23:06:59','2000-09-07 23:06:59',4);
  494. INSERT INTO t1 VALUES ('user_4','somepassword','N',4,4,2,'2000-09-07','23:06:59','2000-09-07 23:06:59',5);
  495. select  user_name, password , subscribed, user_id, quota, weight, access_date, access_time, approved, dummy_primary_key from t1 order by user_name;
  496. user_name password subscribed user_id quota weight access_date access_time approved dummy_primary_key
  497. user_0 somepassword N 0 0 0 2000-09-07 23:06:59 2000-09-07 23:06:59 1
  498. user_1 somepassword Y 1 1 1 2000-09-07 23:06:59 2000-09-07 23:06:59 2
  499. user_2 somepassword N 2 2 1.4142135623731 2000-09-07 23:06:59 2000-09-07 23:06:59 3
  500. user_3 somepassword Y 3 3 1.7320508075689 2000-09-07 23:06:59 2000-09-07 23:06:59 4
  501. user_4 somepassword N 4 4 2 2000-09-07 23:06:59 2000-09-07 23:06:59 5
  502. drop table t1;
  503. CREATE TABLE t1 (
  504. id int(11) NOT NULL auto_increment,
  505. parent_id int(11) DEFAULT '0' NOT NULL,
  506. level tinyint(4) DEFAULT '0' NOT NULL,
  507. KEY (id),
  508. KEY parent_id (parent_id),
  509. KEY level (level)
  510. ) engine=innodb;
  511. INSERT INTO t1 VALUES (1,0,0),(3,1,1),(4,1,1),(8,2,2),(9,2,2),(17,3,2),(22,4,2),(24,4,2),(28,5,2),(29,5,2),(30,5,2),(31,6,2),(32,6,2),(33,6,2),(203,7,2),(202,7,2),(20,3,2),(157,0,0),(193,5,2),(40,7,2),(2,1,1),(15,2,2),(6,1,1),(34,6,2),(35,6,2),(16,3,2),(7,1,1),(36,7,2),(18,3,2),(26,5,2),(27,5,2),(183,4,2),(38,7,2),(25,5,2),(37,7,2),(21,4,2),(19,3,2),(5,1,1);
  512. INSERT INTO t1 values (179,5,2);
  513. update t1 set parent_id=parent_id+100;
  514. select * from t1 where parent_id=102;
  515. id parent_id level
  516. 8 102 2
  517. 9 102 2
  518. 15 102 2
  519. update t1 set id=id+1000;
  520. update t1 set id=1024 where id=1009;
  521. select * from t1;
  522. id parent_id level
  523. 1001 100 0
  524. 1003 101 1
  525. 1004 101 1
  526. 1008 102 2
  527. 1024 102 2
  528. 1017 103 2
  529. 1022 104 2
  530. 1024 104 2
  531. 1028 105 2
  532. 1029 105 2
  533. 1030 105 2
  534. 1031 106 2
  535. 1032 106 2
  536. 1033 106 2
  537. 1203 107 2
  538. 1202 107 2
  539. 1020 103 2
  540. 1157 100 0
  541. 1193 105 2
  542. 1040 107 2
  543. 1002 101 1
  544. 1015 102 2
  545. 1006 101 1
  546. 1034 106 2
  547. 1035 106 2
  548. 1016 103 2
  549. 1007 101 1
  550. 1036 107 2
  551. 1018 103 2
  552. 1026 105 2
  553. 1027 105 2
  554. 1183 104 2
  555. 1038 107 2
  556. 1025 105 2
  557. 1037 107 2
  558. 1021 104 2
  559. 1019 103 2
  560. 1005 101 1
  561. 1179 105 2
  562. update ignore t1 set id=id+1;
  563. select * from t1;
  564. id parent_id level
  565. 1002 100 0
  566. 1004 101 1
  567. 1005 101 1
  568. 1009 102 2
  569. 1025 102 2
  570. 1018 103 2
  571. 1023 104 2
  572. 1025 104 2
  573. 1029 105 2
  574. 1030 105 2
  575. 1031 105 2
  576. 1032 106 2
  577. 1033 106 2
  578. 1034 106 2
  579. 1204 107 2
  580. 1203 107 2
  581. 1021 103 2
  582. 1158 100 0
  583. 1194 105 2
  584. 1041 107 2
  585. 1003 101 1
  586. 1016 102 2
  587. 1007 101 1
  588. 1035 106 2
  589. 1036 106 2
  590. 1017 103 2
  591. 1008 101 1
  592. 1037 107 2
  593. 1019 103 2
  594. 1027 105 2
  595. 1028 105 2
  596. 1184 104 2
  597. 1039 107 2
  598. 1026 105 2
  599. 1038 107 2
  600. 1022 104 2
  601. 1020 103 2
  602. 1006 101 1
  603. 1180 105 2
  604. update ignore t1 set id=1023 where id=1010;
  605. select * from t1 where parent_id=102;
  606. id parent_id level
  607. 1009 102 2
  608. 1025 102 2
  609. 1016 102 2
  610. explain select level from t1 where level=1;
  611. id select_type table type possible_keys key key_len ref rows Extra
  612. 1 SIMPLE t1 ref level level 1 const # Using where; Using index
  613. select level,id from t1 where level=1;
  614. level id
  615. 1 1004
  616. 1 1005
  617. 1 1003
  618. 1 1007
  619. 1 1008
  620. 1 1006
  621. select level,id,parent_id from t1 where level=1;
  622. level id parent_id
  623. 1 1004 101
  624. 1 1005 101
  625. 1 1003 101
  626. 1 1007 101
  627. 1 1008 101
  628. 1 1006 101
  629. select level,id from t1 where level=1 order by id;
  630. level id
  631. 1 1003
  632. 1 1004
  633. 1 1005
  634. 1 1006
  635. 1 1007
  636. 1 1008
  637. delete from t1 where level=1;
  638. select * from t1;
  639. id parent_id level
  640. 1002 100 0
  641. 1009 102 2
  642. 1025 102 2
  643. 1018 103 2
  644. 1023 104 2
  645. 1025 104 2
  646. 1029 105 2
  647. 1030 105 2
  648. 1031 105 2
  649. 1032 106 2
  650. 1033 106 2
  651. 1034 106 2
  652. 1204 107 2
  653. 1203 107 2
  654. 1021 103 2
  655. 1158 100 0
  656. 1194 105 2
  657. 1041 107 2
  658. 1016 102 2
  659. 1035 106 2
  660. 1036 106 2
  661. 1017 103 2
  662. 1037 107 2
  663. 1019 103 2
  664. 1027 105 2
  665. 1028 105 2
  666. 1184 104 2
  667. 1039 107 2
  668. 1026 105 2
  669. 1038 107 2
  670. 1022 104 2
  671. 1020 103 2
  672. 1180 105 2
  673. drop table t1;
  674. CREATE TABLE t1 (
  675. sca_code char(6) NOT NULL,
  676. cat_code char(6) NOT NULL,
  677. sca_desc varchar(50),
  678. lan_code char(2) NOT NULL,
  679. sca_pic varchar(100),
  680. sca_sdesc varchar(50),
  681. sca_sch_desc varchar(16),
  682. PRIMARY KEY (sca_code, cat_code, lan_code),
  683. INDEX sca_pic (sca_pic)
  684. ) engine = innodb ;
  685. INSERT INTO t1 ( sca_code, cat_code, sca_desc, lan_code, sca_pic, sca_sdesc, sca_sch_desc) VALUES ( 'PD', 'J', 'PENDANT', 'EN', NULL, NULL, 'PENDANT'),( 'RI', 'J', 'RING', 'EN', NULL, NULL, 'RING'),( 'QQ', 'N', 'RING', 'EN', 'not null', NULL, 'RING');
  686. select count(*) from t1 where sca_code = 'PD';
  687. count(*)
  688. 1
  689. select count(*) from t1 where sca_code <= 'PD';
  690. count(*)
  691. 1
  692. select count(*) from t1 where sca_pic is null;
  693. count(*)
  694. 2
  695. alter table t1 drop index sca_pic, add index sca_pic (cat_code, sca_pic);
  696. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  697. count(*)
  698. 1
  699. select count(*) from t1 where cat_code='E';
  700. count(*)
  701. 0
  702. alter table t1 drop index sca_pic, add index (sca_pic, cat_code);
  703. select count(*) from t1 where sca_code='PD' and sca_pic is null;
  704. count(*)
  705. 1
  706. select count(*) from t1 where sca_pic >= 'n';
  707. count(*)
  708. 1
  709. select sca_pic from t1 where sca_pic is null;
  710. sca_pic
  711. NULL
  712. NULL
  713. update t1 set sca_pic="test" where sca_pic is null;
  714. delete from t1 where sca_code='pd';
  715. drop table t1;
  716. set @a:=now();
  717. CREATE TABLE t1 (a int not null, b timestamp not null, primary key (a)) engine=innodb;
  718. insert into t1 (a) values(1),(2),(3);
  719. select t1.a from t1 natural join t1 as t2 where t1.b >= @a order by t1.a;
  720. a
  721. 1
  722. 2
  723. 3
  724. update t1 set a=5 where a=1;
  725. select a from t1;
  726. a
  727. 2
  728. 3
  729. 5
  730. drop table t1;
  731. create table t1 (a varchar(100) not null, primary key(a), b int not null) engine=innodb;
  732. insert into t1 values("hello",1),("world",2);
  733. select * from t1 order by b desc;
  734. a b
  735. world 2
  736. hello 1
  737. optimize table t1;
  738. Table Op Msg_type Msg_text
  739. test.t1 optimize status OK
  740. show keys from t1;
  741. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
  742. t1 0 PRIMARY 1 a A # NULL NULL BTREE
  743. drop table t1;
  744. create table t1 (i int, j int ) ENGINE=innodb;
  745. insert into t1 values (1,2);
  746. select * from t1 where i=1 and j=2;
  747. i j
  748. 1 2
  749. create index ax1 on t1 (i,j);
  750. select * from t1 where i=1 and j=2;
  751. i j
  752. 1 2
  753. drop table t1;
  754. CREATE TABLE t1 (
  755. a int3 unsigned NOT NULL,
  756. b int1 unsigned NOT NULL,
  757. UNIQUE (a, b)
  758. ) ENGINE = innodb;
  759. INSERT INTO t1 VALUES (1, 1);
  760. SELECT MIN(B),MAX(b) FROM t1 WHERE t1.a = 1;
  761. MIN(B) MAX(b)
  762. 1 1
  763. drop table t1;
  764. CREATE TABLE t1 (a int unsigned NOT NULL) engine=innodb;
  765. INSERT INTO t1 VALUES (1);
  766. SELECT * FROM t1;
  767. a
  768. 1
  769. DROP TABLE t1;
  770. create table t1 (a int  primary key,b int, c int, d int, e int, f int, g int, h int, i int, j int, k int, l int, m int, n int, o int, p int, q int, r int, s int, t int, u int, v int, w int, x int, y int, z int, a1 int, a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int, b1 int, b2 int, b3 int, b4 int, b5 int, b6 int) engine = innodb;
  771. insert into t1 values (1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1);
  772. explain select * from t1 where a > 0 and a < 50;
  773. id select_type table type possible_keys key key_len ref rows Extra
  774. 1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL # Using where
  775. drop table t1;
  776. create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=innodb;
  777. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  778. LOCK TABLES t1 WRITE;
  779. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  780. ERROR 23000: Duplicate entry '1-1' for key 1
  781. select id from t1;
  782. id
  783. 0
  784. 1
  785. 2
  786. select id from t1;
  787. id
  788. 0
  789. 1
  790. 2
  791. UNLOCK TABLES;
  792. DROP TABLE t1;
  793. create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=innodb;
  794. insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
  795. LOCK TABLES t1 WRITE;
  796. begin;
  797. insert into t1 values (99,1,2,'D'),(1,1,2,'D');
  798. ERROR 23000: Duplicate entry '1-1' for key 1
  799. select id from t1;
  800. id
  801. 0
  802. 1
  803. 2
  804. insert ignore into t1 values (100,1,2,'D'),(1,1,99,'D');
  805. commit;
  806. select id,id3 from t1;
  807. id id3
  808. 0 0
  809. 1 1
  810. 2 2
  811. 100 2
  812. UNLOCK TABLES;
  813. DROP TABLE t1;
  814. create table t1 (a char(20), unique (a(5))) engine=innodb;
  815. drop table t1;
  816. create table t1 (a char(20), index (a(5))) engine=innodb;
  817. show create table t1;
  818. Table Create Table
  819. t1 CREATE TABLE `t1` (
  820.   `a` char(20) default NULL,
  821.   KEY `a` (`a`(5))
  822. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  823. drop table t1;
  824. create temporary table t1 (a int not null auto_increment, primary key(a)) engine=innodb;
  825. insert into t1 values (NULL),(NULL),(NULL);
  826. delete from t1 where a=3;
  827. insert into t1 values (NULL);
  828. select * from t1;
  829. a
  830. 1
  831. 2
  832. 4
  833. alter table t1 add b int;
  834. select * from t1;
  835. a b
  836. 1 NULL
  837. 2 NULL
  838. 4 NULL
  839. drop table t1;
  840. create table t1
  841. (
  842. id int auto_increment primary key,
  843. name varchar(32) not null,
  844. value text not null,
  845. uid int not null,
  846. unique key(name,uid)
  847. ) engine=innodb;
  848. insert into t1 values (1,'one','one value',101),
  849. (2,'two','two value',102),(3,'three','three value',103);
  850. set insert_id=5;
  851. replace into t1 (value,name,uid) values ('other value','two',102);
  852. delete from t1 where uid=102;
  853. set insert_id=5;
  854. replace into t1 (value,name,uid) values ('other value','two',102);
  855. set insert_id=6;
  856. replace into t1 (value,name,uid) values ('other value','two',102);
  857. select * from t1;
  858. id name value uid
  859. 1 one one value 101
  860. 3 three three value 103
  861. 6 two other value 102
  862. drop table t1;
  863. create database mysqltest;
  864. create table mysqltest.t1 (a int not null) engine= innodb;
  865. insert into mysqltest.t1 values(1);
  866. create table mysqltest.t2 (a int not null) engine= myisam;
  867. insert into mysqltest.t2 values(1);
  868. create table mysqltest.t3 (a int not null) engine= heap;
  869. insert into mysqltest.t3 values(1);
  870. commit;
  871. drop database mysqltest;
  872. show tables from mysqltest;
  873. Got one of the listed errors
  874. set autocommit=0;
  875. create table t1 (a int not null) engine= innodb;
  876. insert into t1 values(1),(2);
  877. truncate table t1;
  878. commit;
  879. truncate table t1;
  880. truncate table t1;
  881. select * from t1;
  882. a
  883. insert into t1 values(1),(2);
  884. delete from t1;
  885. select * from t1;
  886. a
  887. commit;
  888. drop table t1;
  889. set autocommit=1;
  890. create table t1 (a int not null) engine= innodb;
  891. insert into t1 values(1),(2);
  892. truncate table t1;
  893. insert into t1 values(1),(2);
  894. select * from t1;
  895. a
  896. 1
  897. 2
  898. truncate table t1;
  899. insert into t1 values(1),(2);
  900. delete from t1;
  901. select * from t1;
  902. a
  903. drop table t1;
  904. create table t1 (a int not null, b int not null, c int not null, primary key (a),key(b)) engine=innodb;
  905. insert into t1 values (3,3,3),(1,1,1),(2,2,2),(4,4,4);
  906. explain select * from t1 order by a;
  907. id select_type table type possible_keys key key_len ref rows Extra
  908. 1 SIMPLE t1 index NULL PRIMARY 4 NULL #
  909. explain select * from t1 order by b;
  910. id select_type table type possible_keys key key_len ref rows Extra
  911. 1 SIMPLE t1 index NULL b 4 NULL #
  912. explain select * from t1 order by c;
  913. id select_type table type possible_keys key key_len ref rows Extra
  914. 1 SIMPLE t1 ALL NULL NULL NULL NULL # Using filesort
  915. explain select a from t1 order by a;
  916. id select_type table type possible_keys key key_len ref rows Extra
  917. 1 SIMPLE t1 index NULL PRIMARY 4 NULL # Using index
  918. explain select b from t1 order by b;
  919. id select_type table type possible_keys key key_len ref rows Extra
  920. 1 SIMPLE t1 index NULL b 4 NULL # Using index
  921. explain select a,b from t1 order by b;
  922. id select_type table type possible_keys key key_len ref rows Extra
  923. 1 SIMPLE t1 index NULL b 4 NULL # Using index
  924. explain select a,b from t1;
  925. id select_type table type possible_keys key key_len ref rows Extra
  926. 1 SIMPLE t1 index NULL b 4 NULL # Using index
  927. explain select a,b,c from t1;
  928. id select_type table type possible_keys key key_len ref rows Extra
  929. 1 SIMPLE t1 ALL NULL NULL NULL NULL #
  930. drop table t1;
  931. create table t1 (t int not null default 1, key (t)) engine=innodb;
  932. desc t1;
  933. Field Type Null Key Default Extra
  934. t int(11) MUL 1
  935. drop table t1;
  936. CREATE TABLE t1 (
  937. number bigint(20) NOT NULL default '0',
  938. cname char(15) NOT NULL default '',
  939. carrier_id smallint(6) NOT NULL default '0',
  940. privacy tinyint(4) NOT NULL default '0',
  941. last_mod_date timestamp(14) NOT NULL,
  942. last_mod_id smallint(6) NOT NULL default '0',
  943. last_app_date timestamp(14) NOT NULL,
  944. last_app_id smallint(6) default '-1',
  945. version smallint(6) NOT NULL default '0',
  946. assigned_scps int(11) default '0',
  947. status tinyint(4) default '0'
  948. ) ENGINE=InnoDB;
  949. INSERT INTO t1 VALUES (4077711111,'SeanWheeler',90,2,20020111112846,500,00000000000000,-1,2,3,1);
  950. INSERT INTO t1 VALUES (9197722223,'berry',90,3,20020111112809,500,20020102114532,501,4,10,0);
  951. INSERT INTO t1 VALUES (650,'San Francisco',0,0,20011227111336,342,00000000000000,-1,1,24,1);
  952. INSERT INTO t1 VALUES (302467,'Sue's Subshop',90,3,20020109113241,500,20020102115111,501,7,24,0);
  953. INSERT INTO t1 VALUES (6014911113,'SudzCarwash',520,1,20020102115234,500,20020102115259,501,33,32768,0);
  954. INSERT INTO t1 VALUES (333,'tubs',99,2,20020109113440,501,20020109113440,500,3,10,0);
  955. CREATE TABLE t2 (
  956. number bigint(20) NOT NULL default '0',
  957. cname char(15) NOT NULL default '',
  958. carrier_id smallint(6) NOT NULL default '0',
  959. privacy tinyint(4) NOT NULL default '0',
  960. last_mod_date timestamp(14) NOT NULL,
  961. last_mod_id smallint(6) NOT NULL default '0',
  962. last_app_date timestamp(14) NOT NULL,
  963. last_app_id smallint(6) default '-1',
  964. version smallint(6) NOT NULL default '0',
  965. assigned_scps int(11) default '0',
  966. status tinyint(4) default '0'
  967. ) ENGINE=InnoDB;
  968. INSERT INTO t2 VALUES (4077711111,'SeanWheeler',0,2,20020111112853,500,00000000000000,-1,2,3,1);
  969. INSERT INTO t2 VALUES (9197722223,'berry',90,3,20020111112818,500,20020102114532,501,4,10,0);
  970. INSERT INTO t2 VALUES (650,'San Francisco',90,0,20020109113158,342,00000000000000,-1,1,24,1);
  971. INSERT INTO t2 VALUES (333,'tubs',99,2,20020109113453,501,20020109113453,500,3,10,0);
  972. select * from t1;
  973. number cname carrier_id privacy last_mod_date last_mod_id last_app_date last_app_id version assigned_scps status
  974. 4077711111 SeanWheeler 90 2 2002-01-11 11:28:46 500 0000-00-00 00:00:00 -1 2 3 1
  975. 9197722223 berry 90 3 2002-01-11 11:28:09 500 2002-01-02 11:45:32 501 4 10 0
  976. 650 San Francisco 0 0 2001-12-27 11:13:36 342 0000-00-00 00:00:00 -1 1 24 1
  977. 302467 Sue's Subshop 90 3 2002-01-09 11:32:41 500 2002-01-02 11:51:11 501 7 24 0
  978. 6014911113 SudzCarwash 520 1 2002-01-02 11:52:34 500 2002-01-02 11:52:59 501 33 32768 0
  979. 333 tubs 99 2 2002-01-09 11:34:40 501 2002-01-09 11:34:40 500 3 10 0
  980. select * from t2;
  981. number cname carrier_id privacy last_mod_date last_mod_id last_app_date last_app_id version assigned_scps status
  982. 4077711111 SeanWheeler 0 2 2002-01-11 11:28:53 500 0000-00-00 00:00:00 -1 2 3 1
  983. 9197722223 berry 90 3 2002-01-11 11:28:18 500 2002-01-02 11:45:32 501 4 10 0
  984. 650 San Francisco 90 0 2002-01-09 11:31:58 342 0000-00-00 00:00:00 -1 1 24 1
  985. 333 tubs 99 2 2002-01-09 11:34:53 501 2002-01-09 11:34:53 500 3 10 0
  986. delete t1, t2 from t1 left join t2 on t1.number=t2.number where (t1.carrier_id=90 and t1.number=t2.number) or (t2.carrier_id=90 and t1.number=t2.number) or  (t1.carrier_id=90 and t2.number is null);
  987. select * from t1;
  988. number cname carrier_id privacy last_mod_date last_mod_id last_app_date last_app_id version assigned_scps status
  989. 6014911113 SudzCarwash 520 1 2002-01-02 11:52:34 500 2002-01-02 11:52:59 501 33 32768 0
  990. 333 tubs 99 2 2002-01-09 11:34:40 501 2002-01-09 11:34:40 500 3 10 0
  991. select * from t2;
  992. number cname carrier_id privacy last_mod_date last_mod_id last_app_date last_app_id version assigned_scps status
  993. 333 tubs 99 2 2002-01-09 11:34:53 501 2002-01-09 11:34:53 500 3 10 0
  994. select * from t2;
  995. number cname carrier_id privacy last_mod_date last_mod_id last_app_date last_app_id version assigned_scps status
  996. 333 tubs 99 2 2002-01-09 11:34:53 501 2002-01-09 11:34:53 500 3 10 0
  997. drop table t1,t2;
  998. create table t1 (id int unsigned not null auto_increment, code tinyint unsigned not null, name char(20) not null, primary key (id), key (code), unique (name)) engine=innodb;
  999. BEGIN;
  1000. SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
  1001. SELECT @@tx_isolation,@@global.tx_isolation;
  1002. @@tx_isolation @@global.tx_isolation
  1003. SERIALIZABLE REPEATABLE-READ
  1004. insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David');
  1005. select id, code, name from t1 order by id;
  1006. id code name
  1007. 1 1 Tim
  1008. 2 1 Monty
  1009. 3 2 David
  1010. COMMIT;
  1011. BEGIN;
  1012. SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ;
  1013. insert into t1 (code, name) values (2, 'Erik'), (3, 'Sasha');
  1014. select id, code, name from t1 order by id;
  1015. id code name
  1016. 1 1 Tim
  1017. 2 1 Monty
  1018. 3 2 David
  1019. 4 2 Erik
  1020. 5 3 Sasha
  1021. COMMIT;
  1022. BEGIN;
  1023. SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
  1024. insert into t1 (code, name) values (3, 'Jeremy'), (4, 'Matt');
  1025. select id, code, name from t1 order by id;
  1026. id code name
  1027. 1 1 Tim
  1028. 2 1 Monty
  1029. 3 2 David
  1030. 4 2 Erik
  1031. 5 3 Sasha
  1032. 6 3 Jeremy
  1033. 7 4 Matt
  1034. COMMIT;
  1035. DROP TABLE t1;
  1036. create table t1 (n int(10), d int(10)) engine=innodb;
  1037. create table t2 (n int(10), d int(10)) engine=innodb;
  1038. insert into t1 values(1,1),(1,2);
  1039. insert into t2 values(1,10),(2,20);
  1040. UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
  1041. select * from t1;
  1042. n d
  1043. 1 10
  1044. 1 10
  1045. select * from t2;
  1046. n d
  1047. 1 30
  1048. 2 20
  1049. drop table t1,t2;
  1050. create table t1 (a int, b int) engine=innodb;
  1051. insert into t1 values(20,null);
  1052. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  1053. t2.b=t3.a;
  1054. b ifnull(t2.b,"this is null")
  1055. NULL this is null
  1056. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  1057. t2.b=t3.a order by 1;
  1058. b ifnull(t2.b,"this is null")
  1059. NULL this is null
  1060. insert into t1 values(10,null);
  1061. select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
  1062. t2.b=t3.a order by 1;
  1063. b ifnull(t2.b,"this is null")
  1064. NULL this is null
  1065. NULL this is null
  1066. drop table t1;
  1067. create table t1 (a varchar(10) not null) engine=myisam;
  1068. create table t2 (b varchar(10) not null unique) engine=innodb;
  1069. select t1.a from t1,t2 where t1.a=t2.b;
  1070. a
  1071. drop table t1,t2;
  1072. create table t1 (a int not null, b int, primary key (a)) engine = innodb;
  1073. create table t2 (a int not null, b int, primary key (a)) engine = innodb;
  1074. insert into t1 values (10, 20);
  1075. insert into t2 values (10, 20);
  1076. update t1, t2 set t1.b = 150, t2.b = t1.b where t2.a = t1.a and t1.a = 10;
  1077. drop table t1,t2;
  1078. CREATE TABLE t1 (id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB;
  1079. CREATE TABLE t2 (id INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id), FOREIGN KEY (t1_id) REFERENCES t1(id)  ON DELETE CASCADE ) ENGINE=INNODB;
  1080. insert into t1 set id=1;
  1081. insert into t2 set id=1, t1_id=1;
  1082. delete t1,t2 from t1,t2 where t1.id=t2.t1_id;
  1083. select * from t1;
  1084. id
  1085. select * from t2;
  1086. id t1_id
  1087. drop table t2,t1;
  1088. CREATE TABLE t1(id INT NOT NULL,  PRIMARY KEY (id)) ENGINE=INNODB;
  1089. CREATE TABLE t2(id  INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id)  ) ENGINE=INNODB;
  1090. INSERT INTO t1 VALUES(1);
  1091. INSERT INTO t2 VALUES(1, 1);
  1092. SELECT * from t1;
  1093. id
  1094. 1
  1095. UPDATE t1,t2 SET t1.id=t1.id+1, t2.t1_id=t1.id+1;
  1096. SELECT * from t1;
  1097. id
  1098. 2
  1099. UPDATE t1,t2 SET t1.id=t1.id+1 where t1.id!=t2.id;
  1100. SELECT * from t1;
  1101. id
  1102. 3
  1103. DROP TABLE t1,t2;
  1104. set autocommit=0;
  1105. CREATE TABLE t1 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
  1106. CREATE TABLE t2 (id CHAR(15) NOT NULL, value CHAR(40) NOT NULL, PRIMARY KEY(id)) ENGINE=InnoDB;
  1107. CREATE TABLE t3 (id1 CHAR(15) NOT NULL, id2 CHAR(15) NOT NULL, PRIMARY KEY(id1, id2)) ENGINE=InnoDB;
  1108. INSERT INTO t3 VALUES("my-test-1", "my-test-2");
  1109. COMMIT;
  1110. INSERT INTO t1 VALUES("this-key", "will disappear");
  1111. INSERT INTO t2 VALUES("this-key", "will also disappear");
  1112. DELETE FROM t3 WHERE id1="my-test-1";
  1113. SELECT * FROM t1;
  1114. id value
  1115. this-key will disappear
  1116. SELECT * FROM t2;
  1117. id value
  1118. this-key will also disappear
  1119. SELECT * FROM t3;
  1120. id1 id2
  1121. ROLLBACK;
  1122. SELECT * FROM t1;
  1123. id value
  1124. SELECT * FROM t2;
  1125. id value
  1126. SELECT * FROM t3;
  1127. id1 id2
  1128. my-test-1 my-test-2
  1129. SELECT * FROM t3 WHERE id1="my-test-1" LOCK IN SHARE MODE;
  1130. id1 id2
  1131. my-test-1 my-test-2
  1132. COMMIT;
  1133. set autocommit=1;
  1134. DROP TABLE t1,t2,t3;
  1135. CREATE TABLE t1 (a int not null primary key, b int not null, unique (b)) engine=innodb;
  1136. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  1137. UPDATE t1 set a=a+100 where b between 2 and 3 and a < 1000;
  1138. SELECT * from t1;
  1139. a b
  1140. 1 1
  1141. 102 2
  1142. 103 3
  1143. 4 4
  1144. 5 5
  1145. 6 6
  1146. 7 7
  1147. 8 8
  1148. 9 9
  1149. drop table t1;
  1150. CREATE TABLE t1 (a int not null primary key, b int not null, key (b)) engine=innodb;
  1151. CREATE TABLE t2 (a int not null primary key, b int not null, key (b)) engine=innodb;
  1152. INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(10,10),(11,11),(12,12);
  1153. INSERT INTO t2 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
  1154. update t1,t2 set t1.a=t1.a+100;
  1155. select * from t1;
  1156. a b
  1157. 101 1
  1158. 102 2
  1159. 103 3
  1160. 104 4
  1161. 105 5
  1162. 106 6
  1163. 107 7
  1164. 108 8
  1165. 109 9
  1166. 110 10
  1167. 111 11
  1168. 112 12
  1169. update t1,t2 set t1.a=t1.a+100 where t1.a=101;
  1170. select * from t1;
  1171. a b
  1172. 201 1
  1173. 102 2
  1174. 103 3
  1175. 104 4
  1176. 105 5
  1177. 106 6
  1178. 107 7
  1179. 108 8
  1180. 109 9
  1181. 110 10
  1182. 111 11
  1183. 112 12
  1184. update t1,t2 set t1.b=t1.b+10 where t1.b=2;
  1185. select * from t1;
  1186. a b
  1187. 201 1
  1188. 103 3
  1189. 104 4
  1190. 105 5
  1191. 106 6
  1192. 107 7
  1193. 108 8
  1194. 109 9
  1195. 110 10
  1196. 111 11
  1197. 102 12
  1198. 112 12
  1199. update t1,t2 set t1.b=t1.b+2,t2.b=t1.b+10 where t1.b between 3 and 5 and t1.a=t2.a+100;
  1200. select * from t1;
  1201. a b
  1202. 201 1
  1203. 103 5
  1204. 104 6
  1205. 106 6
  1206. 105 7
  1207. 107 7
  1208. 108 8
  1209. 109 9
  1210. 110 10
  1211. 111 11
  1212. 102 12
  1213. 112 12
  1214. select * from t2;
  1215. a b
  1216. 1 1
  1217. 2 2
  1218. 6 6
  1219. 7 7
  1220. 8 8
  1221. 9 9
  1222. 3 13
  1223. 4 14
  1224. 5 15
  1225. drop table t1,t2;
  1226. CREATE TABLE t2 (   NEXT_T         BIGINT NOT NULL PRIMARY KEY) ENGINE=MyISAM;
  1227. CREATE TABLE t1 (  B_ID           INTEGER NOT NULL PRIMARY KEY) ENGINE=InnoDB;
  1228. SET AUTOCOMMIT=0;
  1229. INSERT INTO t1 ( B_ID ) VALUES ( 1 );
  1230. INSERT INTO t2 ( NEXT_T ) VALUES ( 1 );
  1231. ROLLBACK;
  1232. Warnings:
  1233. Warning 1196 Some non-transactional changed tables couldn't be rolled back
  1234. SELECT * FROM t1;
  1235. B_ID
  1236. drop table  t1,t2;
  1237. create table t1  ( pk         int primary key,    parent     int not null,    child      int not null,       index (parent)  ) engine = innodb;
  1238. insert into t1 values   (1,0,4),  (2,1,3),  (3,2,1),  (4,1,2);
  1239. select distinct  parent,child   from t1   order by parent;
  1240. parent child
  1241. 0 4
  1242. 1 2
  1243. 1 3
  1244. 2 1
  1245. drop table t1;
  1246. create table t1 (a int not null auto_increment primary key, b int, c int, key(c)) engine=innodb;
  1247. create table t2 (a int not null auto_increment primary key, b int);
  1248. insert into t1 (b) values (null),(null),(null),(null),(null),(null),(null);
  1249. insert into t2 (a) select b from t1;
  1250. insert into t1 (b) select b from t2;
  1251. insert into t2 (a) select b from t1;
  1252. insert into t1 (a) select b from t2;
  1253. insert into t2 (a) select b from t1;
  1254. insert into t1 (a) select b from t2;
  1255. insert into t2 (a) select b from t1;
  1256. insert into t1 (a) select b from t2;
  1257. insert into t2 (a) select b from t1;
  1258. insert into t1 (a) select b from t2;
  1259. insert into t2 (a) select b from t1;
  1260. insert into t1 (a) select b from t2;
  1261. insert into t2 (a) select b from t1;
  1262. insert into t1 (a) select b from t2;
  1263. insert into t2 (a) select b from t1;
  1264. insert into t1 (a) select b from t2;
  1265. insert into t2 (a) select b from t1;
  1266. insert into t1 (a) select b from t2;
  1267. select count(*) from t1;
  1268. count(*)
  1269. 29267
  1270. explain select * from t1 where c between 1 and 10000;
  1271. id select_type table type possible_keys key key_len ref rows Extra
  1272. 1 SIMPLE t1 range c c 5 NULL # Using where
  1273. update t1 set c=a;
  1274. explain select * from t1 where c between 1 and 10000;
  1275. id select_type table type possible_keys key key_len ref rows Extra
  1276. 1 SIMPLE t1 ALL c NULL NULL NULL # Using where
  1277. drop table t1,t2;
  1278. create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) engine=innodb;
  1279. insert into t1 (id) values (null),(null),(null),(null),(null);
  1280. update t1 set fk=69 where fk is null order by id limit 1;
  1281. SELECT * from t1;
  1282. id fk
  1283. 2 NULL
  1284. 3 NULL
  1285. 4 NULL
  1286. 5 NULL
  1287. 1 69
  1288. drop table t1;
  1289. create table t1 (a int not null, b int not null, key (a));
  1290. insert into t1 values (1,1),(1,2),(1,3),(3,1),(3,2),(3,3),(3,1),(3,2),(3,3),(2,1),(2,2),(2,3);
  1291. SET @tmp=0;
  1292. update t1 set b=(@tmp:=@tmp+1) order by a;
  1293. update t1 set b=99 where a=1 order by b asc limit 1;
  1294. update t1 set b=100 where a=1 order by b desc limit 2;
  1295. update t1 set a=a+10+b where a=1 order by b;
  1296. select * from t1 order by a,b;
  1297. a b
  1298. 2 4
  1299. 2 5
  1300. 2 6
  1301. 3 7
  1302. 3 8
  1303. 3 9
  1304. 3 10
  1305. 3 11
  1306. 3 12
  1307. 13 2
  1308. 111 100
  1309. 111 100
  1310. drop table t1;
  1311. create table t1 ( c char(8) not null ) engine=innodb;
  1312. insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
  1313. insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
  1314. alter table t1 add b char(8) not null;
  1315. alter table t1 add a char(8) not null;
  1316. alter table t1 add primary key (a,b,c);
  1317. update t1 set a=c, b=c;
  1318. create table t2 (c char(8) not null, b char(8) not null, a char(8) not null, primary key(a,b,c)) engine=innodb;
  1319. insert into t2 select * from t1;
  1320. delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
  1321. drop table t1,t2;
  1322. SET AUTOCOMMIT=1;
  1323. create table t1 (a integer auto_increment primary key) engine=innodb;
  1324. insert into t1 (a) values (NULL),(NULL);
  1325. truncate table t1;
  1326. insert into t1 (a) values (NULL),(NULL);
  1327. SELECT * from t1;
  1328. a
  1329. 3
  1330. 4
  1331. drop table t1;
  1332. CREATE TABLE t1 (`id 1` INT NOT NULL, PRIMARY KEY (`id 1`)) ENGINE=INNODB;
  1333. CREATE TABLE t2 (id INT PRIMARY KEY, t1_id INT, INDEX par_ind (t1_id), FOREIGN KEY (`t1_id`) REFERENCES `t1`(`id 1`)  ON DELETE CASCADE ) ENGINE=INNODB;
  1334. drop table t2,t1;
  1335. create table `t1` (`id` int( 11 ) not null  ,primary key ( `id` )) engine = innodb;
  1336. insert into `t1`values ( 1 ) ;
  1337. create table `t2` (`id` int( 11 ) not null default '0',unique key `id` ( `id` ) ,constraint `t1_id_fk` foreign key ( `id` ) references `t1` (`id` )) engine = innodb;
  1338. insert into `t2`values ( 1 ) ;
  1339. create table `t3` (`id` int( 11 ) not null default '0',key `id` ( `id` ) ,constraint `t2_id_fk` foreign key ( `id` ) references `t2` (`id` )) engine = innodb;
  1340. insert into `t3`values ( 1 ) ;
  1341. delete t3,t2,t1 from t1,t2,t3 where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  1342. ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
  1343. update t1,t2,t3 set t3.id=5, t2.id=6, t1.id=7  where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  1344. ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
  1345. update t3 set  t3.id=7  where t1.id =1 and t2.id = t1.id and t3.id = t2.id;
  1346. ERROR 42S02: Unknown table 't1' in where clause
  1347. drop table t3,t2,t1;
  1348. create table t1(
  1349. id int primary key,
  1350. pid int,
  1351. index(pid),
  1352. foreign key(pid) references t1(id) on delete cascade) engine=innodb;
  1353. insert into t1 values(0,0),(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),
  1354. (8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13),(15,14);
  1355. delete from t1 where id=0;
  1356. ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
  1357. delete from t1 where id=15;
  1358. delete from t1 where id=0;
  1359. drop table t1;
  1360. CREATE TABLE t1 (col1 int(1))ENGINE=InnoDB;
  1361. CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP,INDEX stamp_idx
  1362. (stamp))ENGINE=InnoDB;
  1363. insert into t1 values (1),(2),(3);
  1364. insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 ),(5,20020204230000);
  1365. Warnings:
  1366. Warning 1265 Data truncated for column 'stamp' at row 3
  1367. SELECT col1 FROM t1 UNION SELECT col1 FROM t2 WHERE stamp <
  1368. '20020204120000' GROUP BY col1;
  1369. col1
  1370. 1
  1371. 2
  1372. 3
  1373. 4
  1374. drop table t1,t2;
  1375. CREATE TABLE t1 (
  1376. `id` int(10) unsigned NOT NULL auto_increment,
  1377. `id_object` int(10) unsigned default '0',
  1378. `id_version` int(10) unsigned NOT NULL default '1',
  1379. label varchar(100) NOT NULL default '',
  1380. `description` text,
  1381. PRIMARY KEY  (`id`),
  1382. KEY `id_object` (`id_object`),
  1383. KEY `id_version` (`id_version`)
  1384. ) ENGINE=InnoDB;
  1385. INSERT INTO t1 VALUES("6", "3382", "9", "Test", NULL), ("7", "102", "5", "Le Pekin (Test)", NULL),("584", "1794", "4", "Test de resto", NULL),("837", "1822", "6", "Test 3", NULL),("1119", "3524", "1", "Societe Test", NULL),("1122", "3525", "1", "Fournisseur Test", NULL);
  1386. CREATE TABLE t2 (
  1387. `id` int(10) unsigned NOT NULL auto_increment,
  1388. `id_version` int(10) unsigned NOT NULL default '1',
  1389. PRIMARY KEY  (`id`),
  1390. KEY `id_version` (`id_version`)
  1391. ) ENGINE=InnoDB;
  1392. INSERT INTO t2 VALUES("3524", "1"),("3525", "1"),("1794", "4"),("102", "5"),("1822", "6"),("3382", "9");
  1393. SELECT t2.id, t1.label FROM t2 INNER JOIN
  1394. (SELECT t1.id_object as id_object FROM t1 WHERE t1.label LIKE '%test%') AS lbl 
  1395. ON (t2.id = lbl.id_object) INNER JOIN t1 ON (t2.id = t1.id_object);
  1396. id label
  1397. 3382 Test
  1398. 102 Le Pekin (Test)
  1399. 1794 Test de resto
  1400. 1822 Test 3
  1401. 3524 Societe Test
  1402. 3525 Fournisseur Test
  1403. drop table t1,t2;
  1404. create table t1 (a int, b varchar(200), c text not null) checksum=1 engine=myisam;
  1405. create table t2 (a int, b varchar(200), c text not null) checksum=0 engine=innodb;
  1406. create table t3 (a int, b varchar(200), c text not null) checksum=1 engine=innodb;
  1407. insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
  1408. insert t2 select * from t1;
  1409. insert t3 select * from t1;
  1410. checksum table t1, t2, t3, t4 quick;
  1411. Table Checksum
  1412. test.t1 968604391
  1413. test.t2 NULL
  1414. test.t3 NULL
  1415. test.t4 NULL
  1416. checksum table t1, t2, t3, t4;
  1417. Table Checksum
  1418. test.t1 968604391
  1419. test.t2 968604391
  1420. test.t3 968604391
  1421. test.t4 NULL
  1422. checksum table t1, t2, t3, t4 extended;
  1423. Table Checksum
  1424. test.t1 968604391
  1425. test.t2 968604391
  1426. test.t3 968604391
  1427. test.t4 NULL
  1428. drop table t1,t2,t3;
  1429. create table t1 (id int,  name char(10) not null,  name2 char(10) not null) engine=innodb;
  1430. insert into t1 values(1,'first','fff'),(2,'second','sss'),(3,'third','ttt');
  1431. select name2 from t1  union all  select name from t1 union all select id from t1;
  1432. name2
  1433. fff
  1434. sss
  1435. ttt
  1436. first
  1437. second
  1438. third
  1439. 1
  1440. 2
  1441. 3
  1442. drop table t1;
  1443. create table t1 (a int) engine=innodb;
  1444. create table t2 like t1;
  1445. drop table t1,t2;
  1446. create table t1 (id int(11) not null, id2 int(11) not null, unique (id,id2)) engine=innodb;
  1447. create table t2 (id int(11) not null, constraint t1_id_fk foreign key ( id ) references t1 (id)) engine = innodb;
  1448. show create table t1;
  1449. Table Create Table
  1450. t1 CREATE TABLE `t1` (
  1451.   `id` int(11) NOT NULL default '0',
  1452.   `id2` int(11) NOT NULL default '0',
  1453.   UNIQUE KEY `id` (`id`,`id2`)
  1454. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1455. show create table t2;
  1456. Table Create Table
  1457. t2 CREATE TABLE `t2` (
  1458.   `id` int(11) NOT NULL default '0',
  1459.   KEY `t1_id_fk` (`id`),
  1460.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1461. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1462. create index id on t2 (id);
  1463. show create table t2;
  1464. Table Create Table
  1465. t2 CREATE TABLE `t2` (
  1466.   `id` int(11) NOT NULL default '0',
  1467.   KEY `id` (`id`),
  1468.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1469. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1470. create index id2 on t2 (id);
  1471. show create table t2;
  1472. Table Create Table
  1473. t2 CREATE TABLE `t2` (
  1474.   `id` int(11) NOT NULL default '0',
  1475.   KEY `id` (`id`),
  1476.   KEY `id2` (`id`),
  1477.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1478. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1479. drop index id2 on t2;
  1480. drop index id on t2;
  1481. Got one of the listed errors
  1482. show create table t2;
  1483. Table Create Table
  1484. t2 CREATE TABLE `t2` (
  1485.   `id` int(11) NOT NULL default '0',
  1486.   KEY `id` (`id`),
  1487.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1488. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1489. drop table t2;
  1490. create table t2 (id int(11) not null, id2 int(11) not null, constraint t1_id_fk foreign key (id,id2) references t1 (id,id2)) engine = innodb;
  1491. show create table t2;
  1492. Table Create Table
  1493. t2 CREATE TABLE `t2` (
  1494.   `id` int(11) NOT NULL default '0',
  1495.   `id2` int(11) NOT NULL default '0',
  1496.   KEY `t1_id_fk` (`id`,`id2`),
  1497.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`, `id2`) REFERENCES `t1` (`id`, `id2`)
  1498. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1499. create unique index id on t2 (id,id2);
  1500. show create table t2;
  1501. Table Create Table
  1502. t2 CREATE TABLE `t2` (
  1503.   `id` int(11) NOT NULL default '0',
  1504.   `id2` int(11) NOT NULL default '0',
  1505.   UNIQUE KEY `id` (`id`,`id2`),
  1506.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`, `id2`) REFERENCES `t1` (`id`, `id2`)
  1507. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1508. drop table t2;
  1509. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
  1510. show create table t2;
  1511. Table Create Table
  1512. t2 CREATE TABLE `t2` (
  1513.   `id` int(11) NOT NULL default '0',
  1514.   `id2` int(11) NOT NULL default '0',
  1515.   UNIQUE KEY `id` (`id`,`id2`),
  1516.   KEY `t1_id_fk` (`id2`,`id`),
  1517.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id2`, `id`) REFERENCES `t1` (`id`, `id2`)
  1518. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1519. drop table t2;
  1520. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2), constraint t1_id_fk foreign key (id) references t1 (id)) engine = innodb;
  1521. show create table t2;
  1522. Table Create Table
  1523. t2 CREATE TABLE `t2` (
  1524.   `id` int(11) NOT NULL default '0',
  1525.   `id2` int(11) NOT NULL default '0',
  1526.   UNIQUE KEY `id` (`id`,`id2`),
  1527.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1528. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1529. drop table t2;
  1530. create table t2 (id int(11) not null, id2 int(11) not null, unique (id,id2),constraint t1_id_fk foreign key (id2,id) references t1 (id,id2)) engine = innodb;
  1531. show create table t2;
  1532. Table Create Table
  1533. t2 CREATE TABLE `t2` (
  1534.   `id` int(11) NOT NULL default '0',
  1535.   `id2` int(11) NOT NULL default '0',
  1536.   UNIQUE KEY `id` (`id`,`id2`),
  1537.   KEY `t1_id_fk` (`id2`,`id`),
  1538.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id2`, `id`) REFERENCES `t1` (`id`, `id2`)
  1539. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1540. drop table t2;
  1541. create table t2 (id int(11) not null auto_increment, id2 int(11) not null, constraint t1_id_fk foreign key (id) references t1 (id), primary key (id), index (id,id2)) engine = innodb;
  1542. show create table t2;
  1543. Table Create Table
  1544. t2 CREATE TABLE `t2` (
  1545.   `id` int(11) NOT NULL auto_increment,
  1546.   `id2` int(11) NOT NULL default '0',
  1547.   PRIMARY KEY  (`id`),
  1548.   KEY `id` (`id`,`id2`),
  1549.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1550. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1551. drop table t2;
  1552. create table t2 (id int(11) not null auto_increment, id2 int(11) not null, constraint t1_id_fk foreign key (id) references t1 (id)) engine= innodb;
  1553. show create table t2;
  1554. Table Create Table
  1555. t2 CREATE TABLE `t2` (
  1556.   `id` int(11) NOT NULL auto_increment,
  1557.   `id2` int(11) NOT NULL default '0',
  1558.   KEY `t1_id_fk` (`id`),
  1559.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1560. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1561. alter table t2 add index id_test (id), add index id_test2 (id,id2);
  1562. show create table t2;
  1563. Table Create Table
  1564. t2 CREATE TABLE `t2` (
  1565.   `id` int(11) NOT NULL auto_increment,
  1566.   `id2` int(11) NOT NULL default '0',
  1567.   KEY `id_test` (`id`),
  1568.   KEY `id_test2` (`id`,`id2`),
  1569.   CONSTRAINT `t1_id_fk` FOREIGN KEY (`id`) REFERENCES `t1` (`id`)
  1570. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1571. drop table t2;
  1572. create table t2 (id int(11) not null, id2 int(11) not null, constraint t1_id_fk foreign key (id2,id) references t1 (id)) engine = innodb;
  1573. ERROR HY000: Can't create table './test/t2.frm' (errno: 150)
  1574. create table t2 (a int auto_increment primary key, b int, index(b), foreign key (b) references t1(id), unique(b)) engine=innodb;
  1575. show create table t2;
  1576. Table Create Table
  1577. t2 CREATE TABLE `t2` (
  1578.   `a` int(11) NOT NULL auto_increment,
  1579.   `b` int(11) default NULL,
  1580.   PRIMARY KEY  (`a`),
  1581.   UNIQUE KEY `b_2` (`b`),
  1582.   KEY `b` (`b`),
  1583.   CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`b`) REFERENCES `t1` (`id`)
  1584. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1585. drop table t2;
  1586. create table t2 (a int auto_increment primary key, b int, foreign key (b) references t1(id), foreign key (b) references t1(id), unique(b)) engine=innodb;
  1587. show create table t2;
  1588. Table Create Table
  1589. t2 CREATE TABLE `t2` (
  1590.   `a` int(11) NOT NULL auto_increment,
  1591.   `b` int(11) default NULL,
  1592.   PRIMARY KEY  (`a`),
  1593.   UNIQUE KEY `b` (`b`),
  1594.   CONSTRAINT `t2_ibfk_1` FOREIGN KEY (`b`) REFERENCES `t1` (`id`),
  1595.   CONSTRAINT `t2_ibfk_2` FOREIGN KEY (`b`) REFERENCES `t1` (`id`)
  1596. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  1597. drop table t2, t1;
  1598. show status like "binlog_cache_use";
  1599. Variable_name Value
  1600. Binlog_cache_use 25
  1601. show status like "binlog_cache_disk_use";
  1602. Variable_name Value
  1603. Binlog_cache_disk_use 0
  1604. create table t1 (a int) engine=innodb;
  1605. show status like "binlog_cache_use";
  1606. Variable_name Value
  1607. Binlog_cache_use 26
  1608. show status like "binlog_cache_disk_use";
  1609. Variable_name Value
  1610. Binlog_cache_disk_use 1
  1611. begin;
  1612. delete from t1;
  1613. commit;
  1614. show status like "binlog_cache_use";
  1615. Variable_name Value
  1616. Binlog_cache_use 27
  1617. show status like "binlog_cache_disk_use";
  1618. Variable_name Value
  1619. Binlog_cache_disk_use 1
  1620. drop table t1;
  1621. create table t1 (c char(10), index (c,c)) engine=innodb;
  1622. ERROR 42S21: Duplicate column name 'c'
  1623. create table t1 (c1 char(10), c2 char(10), index (c1,c2,c1)) engine=innodb;
  1624. ERROR 42S21: Duplicate column name 'c1'
  1625. create table t1 (c1 char(10), c2 char(10), index (c1,c1,c2)) engine=innodb;
  1626. ERROR 42S21: Duplicate column name 'c1'
  1627. create table t1 (c1 char(10), c2 char(10), index (c2,c1,c1)) engine=innodb;
  1628. ERROR 42S21: Duplicate column name 'c1'
  1629. create table t1 (c1 char(10), c2 char(10)) engine=innodb;
  1630. alter table t1 add key (c1,c1);
  1631. ERROR 42S21: Duplicate column name 'c1'
  1632. alter table t1 add key (c2,c1,c1);
  1633. ERROR 42S21: Duplicate column name 'c1'
  1634. alter table t1 add key (c1,c2,c1);
  1635. ERROR 42S21: Duplicate column name 'c1'
  1636. alter table t1 add key (c1,c1,c2);
  1637. ERROR 42S21: Duplicate column name 'c1'
  1638. drop table t1;
  1639. create table t1(a int(1) , b int(1)) engine=innodb;
  1640. insert into t1 values ('1111', '3333');
  1641. select distinct concat(a, b) from t1;
  1642. concat(a, b)
  1643. 11113333
  1644. drop table t1;
  1645. CREATE TABLE t1 ( a char(10) ) ENGINE=InnoDB;
  1646. SELECT a FROM t1 WHERE MATCH (a) AGAINST ('test' IN BOOLEAN MODE);
  1647. ERROR HY000: The used table type doesn't support FULLTEXT indexes
  1648. DROP TABLE t1;
  1649. CREATE TABLE t1 (a_id tinyint(4) NOT NULL default '0', PRIMARY KEY  (a_id)) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1650. INSERT INTO t1 VALUES (1),(2),(3);
  1651. CREATE TABLE t2 (b_id tinyint(4) NOT NULL default '0',b_a tinyint(4) NOT NULL default '0', PRIMARY KEY  (b_id), KEY  (b_a), 
  1652. CONSTRAINT fk_b_a FOREIGN KEY (b_a) REFERENCES t1 (a_id) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1653. INSERT INTO t2 VALUES (1,1),(2,1),(3,1),(4,2),(5,2);
  1654. SELECT * FROM (SELECT t1.*,GROUP_CONCAT(t2.b_id SEPARATOR ',') as b_list FROM (t1 LEFT JOIN (t2) on t1.a_id = t2.b_a) GROUP BY t1.a_id ) AS xyz;
  1655. a_id b_list
  1656. 1 1,2,3
  1657. 2 4,5
  1658. 3 NULL
  1659. DROP TABLE t2;
  1660. DROP TABLE t1;
  1661. create temporary table t1 (a int) engine=innodb;
  1662. insert into t1 values (4711);
  1663. truncate t1;
  1664. insert into t1 values (42);
  1665. select * from t1;
  1666. a
  1667. 42
  1668. drop table t1;
  1669. create table t1 (a int) engine=innodb;
  1670. insert into t1 values (4711);
  1671. truncate t1;
  1672. insert into t1 values (42);
  1673. select * from t1;
  1674. a
  1675. 42
  1676. drop table t1;
  1677. create table t1 (a int not null, b int not null, c blob not null, d int not null, e int, primary key (a,b,c(255),d)) engine=innodb;
  1678. insert into t1 values (2,2,"b",2,2),(1,1,"a",1,1),(3,3,"ab",3,3);
  1679. select * from t1 order by a,b,c,d;
  1680. a b c d e
  1681. 1 1 a 1 1
  1682. 2 2 b 2 2
  1683. 3 3 ab 3 3
  1684. explain select * from t1 order by a,b,c,d;
  1685. id select_type table type possible_keys key key_len ref rows Extra
  1686. 1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
  1687. drop table t1;
  1688. create table t1 (a char(1), b char(1), key(a, b)) engine=innodb;
  1689. insert into t1 values ('8', '6'), ('4', '7');
  1690. select min(a) from t1;
  1691. min(a)
  1692. 4
  1693. select min(b) from t1 where a='8';
  1694. min(b)
  1695. 6
  1696. drop table t1;
  1697. create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1;
  1698. insert into test_checksum values (1),(2);
  1699. set autocommit=0;
  1700. checksum table test_checksum;
  1701. Table Checksum
  1702. test.test_checksum 1531596814
  1703. insert into test_checksum values(3);
  1704. checksum table test_checksum;
  1705. Table Checksum
  1706. test.test_checksum 1531596814
  1707. commit;
  1708. checksum table test_checksum;
  1709. Table Checksum
  1710. test.test_checksum 2050879373
  1711. commit;
  1712. drop table test_checksum;
  1713. create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1;
  1714. insert into test_checksum values (1),(2);
  1715. set autocommit=1;
  1716. checksum table test_checksum;
  1717. Table Checksum
  1718. test.test_checksum 1531596814
  1719. set autocommit=1;
  1720. insert into test_checksum values(3);
  1721. checksum table test_checksum;
  1722. Table Checksum
  1723. test.test_checksum 2050879373
  1724. drop table test_checksum;