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

MySQL数据库

开发平台:

Visual C++

  1. DROP TABLE IF EXISTS t1;
  2. drop database if exists mysqltest;
  3. CREATE TABLE t1 (
  4. a INT NOT NULL,
  5. b INT NOT NULL
  6. ) ENGINE=ndbcluster;
  7. INSERT INTO t1 VALUES (9410,9412);
  8. ALTER TABLE t1 ADD COLUMN c int not null;
  9. SELECT * FROM t1;
  10. a b c
  11. 9410 9412 0
  12. DROP TABLE t1;
  13. CREATE DATABASE mysqltest;
  14. USE mysqltest;
  15. CREATE TABLE t1 (
  16. a INT NOT NULL,
  17. b INT NOT NULL
  18. ) ENGINE=ndbcluster;
  19. RENAME TABLE t1 TO test.t1;
  20. SHOW TABLES;
  21. Tables_in_mysqltest
  22. DROP DATABASE mysqltest;
  23. USE test;
  24. SHOW TABLES;
  25. Tables_in_test
  26. t1
  27. DROP TABLE t1;
  28. create table t1 (
  29. col1 int not null auto_increment primary key,
  30. col2 varchar(30) not null,
  31. col3 varchar (20) not null,
  32. col4 varchar(4) not null,
  33. col5 enum('PENDING', 'ACTIVE', 'DISABLED') not null,
  34. col6 int not null, to_be_deleted int)  ENGINE=ndbcluster;
  35. show table status;
  36. Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
  37. t1 ndbcluster 9 Dynamic 0 0 0 NULL 0 0 1 NULL NULL NULL latin1_swedish_ci NULL
  38. SET SQL_MODE=NO_AUTO_VALUE_ON_ZERO;
  39. insert into t1 values
  40. (0,4,3,5,"PENDING",1,7),(NULL,4,3,5,"PENDING",1,7),(31,4,3,5,"PENDING",1,7), (7,4,3,5,"PENDING",1,7), (NULL,4,3,5,"PENDING",1,7), (100,4,3,5,"PENDING",1,7), (99,4,3,5,"PENDING",1,7), (8,4,3,5,"PENDING",1,7), (NULL,4,3,5,"PENDING",1,7);
  41. show table status;
  42. Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
  43. t1 ndbcluster 9 Dynamic 9 0 0 NULL 0 0 102 NULL NULL NULL latin1_swedish_ci NULL
  44. select * from t1 order by col1;
  45. col1 col2 col3 col4 col5 col6 to_be_deleted
  46. 0 4 3 5 PENDING 1 7
  47. 1 4 3 5 PENDING 1 7
  48. 7 4 3 5 PENDING 1 7
  49. 8 4 3 5 PENDING 1 7
  50. 31 4 3 5 PENDING 1 7
  51. 32 4 3 5 PENDING 1 7
  52. 99 4 3 5 PENDING 1 7
  53. 100 4 3 5 PENDING 1 7
  54. 101 4 3 5 PENDING 1 7
  55. alter table t1
  56. add column col4_5 varchar(20) not null after col4,
  57. add column col7 varchar(30) not null after col5,
  58. add column col8 datetime not null, drop column to_be_deleted,
  59. change column col2 fourth varchar(30) not null after col3,
  60. modify column col6 int not null first;
  61. show table status;
  62. Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
  63. t1 ndbcluster 9 Dynamic 9 0 0 NULL 0 0 102 NULL NULL NULL latin1_swedish_ci NULL
  64. select * from t1 order by col1;
  65. col6 col1 col3 fourth col4 col4_5 col5 col7 col8
  66. 1 0 3 4 5 PENDING 0000-00-00 00:00:00
  67. 1 1 3 4 5 PENDING 0000-00-00 00:00:00
  68. 1 7 3 4 5 PENDING 0000-00-00 00:00:00
  69. 1 8 3 4 5 PENDING 0000-00-00 00:00:00
  70. 1 31 3 4 5 PENDING 0000-00-00 00:00:00
  71. 1 32 3 4 5 PENDING 0000-00-00 00:00:00
  72. 1 99 3 4 5 PENDING 0000-00-00 00:00:00
  73. 1 100 3 4 5 PENDING 0000-00-00 00:00:00
  74. 1 101 3 4 5 PENDING 0000-00-00 00:00:00
  75. insert into t1 values (2, NULL,4,3,5,99,"PENDING","EXTRA",'2004-01-01 00:00:00');
  76. show table status;
  77. Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
  78. t1 ndbcluster 9 Dynamic 10 0 0 NULL 0 0 103 NULL NULL NULL latin1_swedish_ci NULL
  79. select * from t1 order by col1;
  80. col6 col1 col3 fourth col4 col4_5 col5 col7 col8
  81. 1 0 3 4 5 PENDING 0000-00-00 00:00:00
  82. 1 1 3 4 5 PENDING 0000-00-00 00:00:00
  83. 1 7 3 4 5 PENDING 0000-00-00 00:00:00
  84. 1 8 3 4 5 PENDING 0000-00-00 00:00:00
  85. 1 31 3 4 5 PENDING 0000-00-00 00:00:00
  86. 1 32 3 4 5 PENDING 0000-00-00 00:00:00
  87. 1 99 3 4 5 PENDING 0000-00-00 00:00:00
  88. 1 100 3 4 5 PENDING 0000-00-00 00:00:00
  89. 1 101 3 4 5 PENDING 0000-00-00 00:00:00
  90. 2 102 4 3 5 99 PENDING EXTRA 2004-01-01 00:00:00
  91. delete from t1;
  92. insert into t1 values (0,0,4,3,5,99,"PENDING","EXTRA",'2004-01-01 00:00:00');
  93. SET SQL_MODE='';
  94. insert into t1 values (1,0,4,3,5,99,"PENDING","EXTRA",'2004-01-01 00:00:00');
  95. select * from t1 order by col1;
  96. col6 col1 col3 fourth col4 col4_5 col5 col7 col8
  97. 0 0 4 3 5 99 PENDING EXTRA 2004-01-01 00:00:00
  98. 1 103 4 3 5 99 PENDING EXTRA 2004-01-01 00:00:00
  99. alter table t1 drop column col4_5;
  100. insert into t1 values (2,0,4,3,5,"PENDING","EXTRA",'2004-01-01 00:00:00');
  101. select * from t1 order by col1;
  102. col6 col1 col3 fourth col4 col5 col7 col8
  103. 0 0 4 3 5 PENDING EXTRA 2004-01-01 00:00:00
  104. 1 103 4 3 5 PENDING EXTRA 2004-01-01 00:00:00
  105. 2 104 4 3 5 PENDING EXTRA 2004-01-01 00:00:00
  106. drop table t1;
  107. CREATE TABLE t1 (
  108. a INT NOT NULL,
  109. b INT NOT NULL
  110. ) ENGINE=ndbcluster;
  111. INSERT INTO t1 VALUES (9410,9412);
  112. ALTER TABLE t1 ADD COLUMN c int not null;
  113. select * from t1 order by a;
  114. a b c
  115. 9410 9412 0
  116. select * from t1 order by a;
  117. a b c
  118. 9410 9412 0
  119. alter table t1 drop c;
  120. select * from t1 order by a;
  121. a b
  122. 9410 9412
  123. drop table t1;
  124. select * from t1 order by a;
  125. ERROR 42S02: Table 'test.t1' doesn't exist
  126. CREATE TABLE t1 (
  127. a INT NOT NULL PRIMARY KEY,
  128. b INT NOT NULL
  129. ) ENGINE=ndbcluster;
  130. INSERT INTO t1 VALUES (0,1),(17,18);
  131. select * from t1 order by a;
  132. a b
  133. 0 1
  134. 17 18
  135. SET SQL_MODE=NO_AUTO_VALUE_ON_ZERO;
  136. alter table  t1 modify column a int not null auto_increment;
  137. SET SQL_MODE='';
  138. select * from t1 order by a;
  139. a b
  140. 0 1
  141. 17 18
  142. INSERT INTO t1 VALUES (0,19),(20,21);
  143. select * from t1 order by a;
  144. a b
  145. 0 1
  146. 17 18
  147. 18 19
  148. 20 21
  149. drop table t1;
  150. CREATE TABLE t1 (
  151. a INT NOT NULL PRIMARY KEY,
  152. b INT NOT NULL
  153. ) ENGINE=ndbcluster;
  154. INSERT INTO t1 VALUES (0,1),(17,18);
  155. select * from t1 order by a;
  156. a b
  157. 0 1
  158. 17 18
  159. alter table  t1 add c int not null unique auto_increment;
  160. select c from t1 order by c;
  161. c
  162. 1
  163. 2
  164. INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0);
  165. select c from t1 order by c;
  166. c
  167. 1
  168. 2
  169. 3
  170. 4
  171. 5
  172. drop table t1;
  173. create table t1 ( a int primary key, b varchar(10), c varchar(10), index (b) )
  174. engine=ndb;
  175. insert into t1 values (1,'one','one'), (2,'two','two'), (3,'three','three');
  176. create index c on t1(c);
  177. select * from t1 where b = 'two';
  178. a b c
  179. 2 two two
  180. alter table t1 drop index c;
  181. select * from t1 where b = 'two';
  182. ERROR HY000: Can't lock file (errno: 241)
  183. select * from t1 where b = 'two';
  184. a b c
  185. 2 two two
  186. drop table t1;
  187. create table t3 (a int primary key) engine=ndbcluster;
  188. begin;
  189. insert into t3 values (1);
  190. alter table t3 rename t4;
  191. delete from t3;
  192. insert into t3 values (1);
  193. commit;
  194. select * from t3;
  195. ERROR HY000: Can't lock file (errno: 155)
  196. select * from t4;
  197. a
  198. 1
  199. drop table t4;
  200. show tables;
  201. Tables_in_test
  202. create table t1 (
  203. ai bigint auto_increment,
  204. c001 int(11) not null,
  205. c002 int(11) not null,
  206. c003 int(11) not null,
  207. c004 int(11) not null,
  208. c005 int(11) not null,
  209. c006 int(11) not null,
  210. c007 int(11) not null,
  211. c008 int(11) not null,
  212. c009 int(11) not null,
  213. c010 int(11) not null,
  214. c011 int(11) not null,
  215. c012 int(11) not null,
  216. c013 int(11) not null,
  217. c014 int(11) not null,
  218. c015 int(11) not null,
  219. c016 int(11) not null,
  220. c017 int(11) not null,
  221. c018 int(11) not null,
  222. c019 int(11) not null,
  223. c020 int(11) not null,
  224. c021 int(11) not null,
  225. c022 int(11) not null,
  226. c023 int(11) not null,
  227. c024 int(11) not null,
  228. c025 int(11) not null,
  229. c026 int(11) not null,
  230. c027 int(11) not null,
  231. c028 int(11) not null,
  232. c029 int(11) not null,
  233. c030 int(11) not null,
  234. c031 int(11) not null,
  235. c032 int(11) not null,
  236. c033 int(11) not null,
  237. c034 int(11) not null,
  238. c035 int(11) not null,
  239. c036 int(11) not null,
  240. c037 int(11) not null,
  241. c038 int(11) not null,
  242. c039 int(11) not null,
  243. c040 int(11) not null,
  244. c041 int(11) not null,
  245. c042 int(11) not null,
  246. c043 int(11) not null,
  247. c044 int(11) not null,
  248. c045 int(11) not null,
  249. c046 int(11) not null,
  250. c047 int(11) not null,
  251. c048 int(11) not null,
  252. c049 int(11) not null,
  253. c050 int(11) not null,
  254. c051 int(11) not null,
  255. c052 int(11) not null,
  256. c053 int(11) not null,
  257. c054 int(11) not null,
  258. c055 int(11) not null,
  259. c056 int(11) not null,
  260. c057 int(11) not null,
  261. c058 int(11) not null,
  262. c059 int(11) not null,
  263. c060 int(11) not null,
  264. c061 int(11) not null,
  265. c062 int(11) not null,
  266. c063 int(11) not null,
  267. c064 int(11) not null,
  268. c065 int(11) not null,
  269. c066 int(11) not null,
  270. c067 int(11) not null,
  271. c068 int(11) not null,
  272. c069 int(11) not null,
  273. c070 int(11) not null,
  274. c071 int(11) not null,
  275. c072 int(11) not null,
  276. c073 int(11) not null,
  277. c074 int(11) not null,
  278. c075 int(11) not null,
  279. c076 int(11) not null,
  280. c077 int(11) not null,
  281. c078 int(11) not null,
  282. c079 int(11) not null,
  283. c080 int(11) not null,
  284. c081 int(11) not null,
  285. c082 int(11) not null,
  286. c083 int(11) not null,
  287. c084 int(11) not null,
  288. c085 int(11) not null,
  289. c086 int(11) not null,
  290. c087 int(11) not null,
  291. c088 int(11) not null,
  292. c089 int(11) not null,
  293. c090 int(11) not null,
  294. c091 int(11) not null,
  295. c092 int(11) not null,
  296. c093 int(11) not null,
  297. c094 int(11) not null,
  298. c095 int(11) not null,
  299. c096 int(11) not null,
  300. c097 int(11) not null,
  301. c098 int(11) not null,
  302. c099 int(11) not null,
  303. c100 int(11) not null,
  304. c101 int(11) not null,
  305. c102 int(11) not null,
  306. c103 int(11) not null,
  307. c104 int(11) not null,
  308. c105 int(11) not null,
  309. c106 int(11) not null,
  310. c107 int(11) not null,
  311. c108 int(11) not null,
  312. c109 int(11) not null,
  313. primary key (ai),
  314. unique key tx1 (c002, c003, c004, c005)) engine=ndb;
  315. create index tx2 
  316. on t1 (c010, c011, c012, c013);
  317. drop table t1;