create.result 14.7 KB
Newer Older
unknown's avatar
unknown committed
1
drop table if exists t1,t2,t3;
2
drop database if exists test_$1;
unknown's avatar
unknown committed
3 4 5
create table t1 (b char(0));
insert into t1 values (""),(null);
select * from t1;
6 7 8
b

NULL
unknown's avatar
unknown committed
9 10 11 12
drop table if exists t1;
create table t1 (b char(0) not null);
create table if not exists t1 (b char(0) not null);
insert into t1 values (""),(null);
unknown's avatar
unknown committed
13
Warnings:
unknown's avatar
unknown committed
14
Warning	1263	Data truncated, NULL supplied to NOT NULL column 'b' at row 2
unknown's avatar
unknown committed
15
select * from t1;
16 17 18
b


unknown's avatar
unknown committed
19
drop table t1;
unknown's avatar
unknown committed
20
create table t1 (a int not null auto_increment,primary key (a)) engine=heap;
21
drop table t1;
unknown's avatar
unknown committed
22
create table t2 engine=heap select * from t1;
23
ERROR 42S02: Table 'test.t1' doesn't exist
unknown's avatar
unknown committed
24
create table t2 select auto+1 from t1;
25
ERROR 42S02: Table 'test.t1' doesn't exist
unknown's avatar
unknown committed
26
drop table if exists t1,t2;
27 28 29
Warnings:
Note	1051	Unknown table 't1'
Note	1051	Unknown table 't2'
unknown's avatar
unknown committed
30
create table t1 (b char(0) not null, index(b));
31
ERROR 42000: The used storage engine can't index column 'b'
unknown's avatar
unknown committed
32
create table t1 (a int not null,b text) engine=heap;
33
ERROR 42000: The used table type doesn't support BLOB/TEXT columns
unknown's avatar
unknown committed
34
drop table if exists t1;
unknown's avatar
unknown committed
35 36
Warnings:
Note	1051	Unknown table 't1'
unknown's avatar
unknown committed
37
create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid)) engine=heap;
38
ERROR 42000: Incorrect table definition; There can only be one auto column and it must be defined as a key
unknown's avatar
unknown committed
39
create table not_existing_database.test (a int);
unknown's avatar
unknown committed
40
Got one of the listed errors
unknown's avatar
unknown committed
41
create table `a/a` (a int);
42
ERROR 42000: Incorrect table name 'a/a'
unknown's avatar
unknown committed
43
create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int);
44
ERROR 42000: Incorrect table name 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
unknown's avatar
unknown committed
45
create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int);
46
ERROR 42000: Identifier name 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' is too long
unknown's avatar
unknown committed
47 48 49
create table 1ea10 (1a20 int,1e int);
insert into 1ea10 values(1,1);
select 1ea10.1a20,1e+ 1e+10 from 1ea10;
50 51
1a20	1e+ 1e+10
1	10000000001
unknown's avatar
unknown committed
52 53 54 55
drop table 1ea10;
create table t1 (t1.index int);
drop table t1;
drop database if exists test_$1;
56
Warnings:
57
Note	1008	Can't drop database 'test_$1'; database doesn't exist
unknown's avatar
unknown committed
58 59 60 61
create database test_$1;
create table test_$1.$test1 (a$1 int, $b int, c$ int);
insert into test_$1.$test1 values (1,2,3);
select a$1, $b, c$ from test_$1.$test1;
62 63
a$1	$b	c$
1	2	3
unknown's avatar
unknown committed
64 65 66
create table test_$1.test2$ (a int);
drop table test_$1.test2$;
drop database test_$1;
67
create table `` (a int);
68
ERROR 42000: Incorrect table name ''
69
drop table if exists ``;
70
ERROR 42000: Incorrect table name ''
71
create table t1 (`` int);
72
ERROR 42000: Incorrect column name ''
73
create table t1 (i int, index `` (i));
74
ERROR 42000: Incorrect index name ''
unknown's avatar
unknown committed
75 76 77 78
create table t1 (a int auto_increment not null primary key, B CHAR(20));
insert into t1 (b) values ("hello"),("my"),("world");
create table t2 (key (b)) select * from t1;
explain select * from t2 where b="world";
unknown's avatar
unknown committed
79
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
unknown's avatar
unknown committed
80
1	SIMPLE	t2	ref	B	B	21	const	1	Using where
unknown's avatar
unknown committed
81
select * from t2 where b="world";
82 83
a	B
3	world
unknown's avatar
unknown committed
84
drop table t1,t2;
unknown's avatar
unknown committed
85 86 87
create table t1(x varchar(50) );
create table t2 select x from t1 where 1=2;
describe t1;
88 89
Field	Type	Null	Key	Default	Extra
x	varchar(50)	YES		NULL	
unknown's avatar
unknown committed
90
describe t2;
91
Field	Type	Null	Key	Default	Extra
92
x	varchar(50)	YES		NULL	
93 94 95
drop table t2;
create table t2 select now() as a , curtime() as b, curdate() as c , 1+1 as d , 1.0 + 1 as e , 33333333333333333 + 3 as f;
describe t2;
96 97 98 99 100 101 102
Field	Type	Null	Key	Default	Extra
a	datetime			0000-00-00 00:00:00	
b	time			00:00:00	
c	date			0000-00-00	
d	bigint(17)			0	
e	double(18,1)			0.0	
f	bigint(17)			0	
103
drop table t2;
unknown's avatar
unknown committed
104
create table t2 select CAST("2001-12-29" AS DATE) as d, CAST("20:45:11" AS TIME) as t, CAST("2001-12-29  20:45:11" AS DATETIME) as dt;
105
describe t2;
106
Field	Type	Null	Key	Default	Extra
107 108 109
d	date	YES		NULL	
t	time	YES		NULL	
dt	datetime	YES		NULL	
unknown's avatar
unknown committed
110
drop table t1,t2;
111 112 113
create table t1 (a tinyint);
create table t2 (a int) select * from t1;
describe t1;
114 115
Field	Type	Null	Key	Default	Extra
a	tinyint(4)	YES		NULL	
116
describe t2;
117 118
Field	Type	Null	Key	Default	Extra
a	int(11)	YES		NULL	
119 120
drop table if exists t2;
create table t2 (a int, a float) select * from t1;
121
ERROR 42S21: Duplicate column name 'a'
122
drop table if exists t2;
123 124
Warnings:
Note	1051	Unknown table 't2'
125
create table t2 (a int) select a as b, a+1 as b from t1;
126
ERROR 42S21: Duplicate column name 'b'
127
drop table if exists t2;
128 129
Warnings:
Note	1051	Unknown table 't2'
130
create table t2 (b int) select a as b, a+1 as b from t1;
131
ERROR 42S21: Duplicate column name 'b'
132
drop table if exists t1,t2;
133 134
Warnings:
Note	1051	Unknown table 't2'
135 136 137 138 139 140 141 142 143 144
CREATE TABLE t1 (a int not null);
INSERT INTO t1 values (1),(2),(1);
CREATE TABLE t2 (primary key(a)) SELECT * FROM t1;
ERROR 23000: Duplicate entry '1' for key 1
SELECT * from t2;
ERROR 42S02: Table 'test.t2' doesn't exist
DROP TABLE t1;
DROP TABLE IF EXISTS t2;
Warnings:
Note	1051	Unknown table 't2'
unknown's avatar
unknown committed
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
create table t1 (a int not null, b int, primary key(a), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b));
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) NOT NULL default '0',
  `b` int(11) default NULL,
  PRIMARY KEY  (`a`),
  KEY `b` (`b`),
  KEY `b_2` (`b`),
  KEY `b_3` (`b`),
  KEY `b_4` (`b`),
  KEY `b_5` (`b`),
  KEY `b_6` (`b`),
  KEY `b_7` (`b`),
  KEY `b_8` (`b`),
  KEY `b_9` (`b`),
  KEY `b_10` (`b`),
  KEY `b_11` (`b`),
  KEY `b_12` (`b`),
  KEY `b_13` (`b`),
  KEY `b_14` (`b`),
  KEY `b_15` (`b`),
  KEY `b_16` (`b`),
  KEY `b_17` (`b`),
  KEY `b_18` (`b`),
  KEY `b_19` (`b`),
  KEY `b_20` (`b`),
  KEY `b_21` (`b`),
  KEY `b_22` (`b`),
  KEY `b_23` (`b`),
  KEY `b_24` (`b`),
  KEY `b_25` (`b`),
  KEY `b_26` (`b`),
  KEY `b_27` (`b`),
  KEY `b_28` (`b`),
  KEY `b_29` (`b`),
  KEY `b_30` (`b`),
  KEY `b_31` (`b`)
unknown's avatar
unknown committed
183
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
184
drop table t1;
185 186
create table t1 select if(1,'1','0'), month("2002-08-02");
drop table t1;
unknown's avatar
unknown committed
187 188 189 190 191
create table t1 select if('2002'='2002','Y','N');
select * from t1;
if('2002'='2002','Y','N')
Y
drop table if exists t1;
unknown's avatar
unknown committed
192 193 194
SET SESSION storage_engine="heap";
SELECT @@storage_engine;
@@storage_engine
195 196 197 198 199 200
HEAP
CREATE TABLE t1 (a int not null);
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) NOT NULL default '0'
unknown's avatar
unknown committed
201
) ENGINE=HEAP DEFAULT CHARSET=latin1
202
drop table t1;
unknown's avatar
unknown committed
203
SET SESSION storage_engine="gemini";
204
ERROR 42000: Unknown table engine 'gemini'
unknown's avatar
unknown committed
205 206
SELECT @@storage_engine;
@@storage_engine
207
HEAP
208 209 210 211 212
CREATE TABLE t1 (a int not null);
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) NOT NULL default '0'
unknown's avatar
unknown committed
213
) ENGINE=HEAP DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
214
SET SESSION storage_engine=default;
215
drop table t1;
216 217 218
create table t1 ( k1 varchar(2), k2 int, primary key(k1,k2));
insert into t1 values ("a", 1), ("b", 2);
insert into t1 values ("c", NULL);
219
ERROR 23000: Column 'k2' cannot be null
220
insert into t1 values (NULL, 3);
221
ERROR 23000: Column 'k1' cannot be null
222
insert into t1 values (NULL, NULL);
223
ERROR 23000: Column 'k1' cannot be null
224
drop table t1;
unknown's avatar
unknown committed
225 226
create table t1 select x'4132';
drop table t1;
unknown's avatar
unknown committed
227 228 229
create table t1 select 1,2,3;
create table if not exists t1 select 1,2;
create table if not exists t1 select 1,2,3,4;
unknown's avatar
unknown committed
230
ERROR 21S01: Column count doesn't match value count at row 1
unknown's avatar
unknown committed
231 232 233 234 235 236 237 238 239 240
create table if not exists t1 select 1;
select * from t1;
1	2	3
1	2	3
0	1	2
0	0	1
drop table t1;
create table t1 select 1,2,3;
create table if not exists t1 select 1,2;
create table if not exists t1 select 1,2,3,4;
unknown's avatar
unknown committed
241
ERROR 21S01: Column count doesn't match value count at row 1
unknown's avatar
unknown committed
242 243 244 245 246 247 248
create table if not exists t1 select 1;
select * from t1;
1	2	3
1	2	3
0	1	2
0	0	1
drop table t1;
249 250 251 252 253 254 255 256 257
create table t1 (a int not null, b int, primary key (a));
insert into t1 values (1,1);
create table if not exists t1 select 2;
select * from t1;
a	b
1	1
0	2
create table if not exists t1 select 3 as 'a',4 as 'b';
create table if not exists t1 select 3 as 'a',3 as 'b';
unknown's avatar
unknown committed
258
ERROR 23000: Duplicate entry '3' for key 1
259 260 261 262 263 264
select * from t1;
a	b
1	1
0	2
3	4
drop table t1;
unknown's avatar
unknown committed
265 266 267
create table t1 (a int, key(a));
create table t2 (b int, foreign key(b) references t1(a), key(b));
drop table if exists t1,t2;
unknown's avatar
unknown committed
268 269 270 271 272 273 274 275 276
create table t1(id int not null, name char(20));
insert into t1 values(10,'mysql'),(20,'monty- the creator');
create table t2(id int not null);
insert into t2 values(10),(20);
create table t3 like t1;
show create table t3;
Table	Create Table
t3	CREATE TABLE `t3` (
  `id` int(11) NOT NULL default '0',
277
  `name` char(20) default NULL
unknown's avatar
unknown committed
278
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
279 280 281 282 283 284 285 286 287 288 289 290 291
select * from t3;
id	name
create table if not exists t3 like t1;
Warnings:
Warning	1050	Table 't3' already exists
select @@warning_count;
@@warning_count
1
create temporary table t3 like t2;
show create table t3;
Table	Create Table
t3	CREATE TEMPORARY TABLE `t3` (
  `id` int(11) NOT NULL default '0'
unknown's avatar
unknown committed
292
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
293 294 295 296 297 298 299
select * from t3;
id
drop table t3;
show create table t3;
Table	Create Table
t3	CREATE TABLE `t3` (
  `id` int(11) NOT NULL default '0',
300
  `name` char(20) default NULL
unknown's avatar
unknown committed
301
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
302 303
select * from t3;
id	name
unknown's avatar
unknown committed
304
drop table t2, t3;
unknown's avatar
unknown committed
305 306 307 308 309 310 311
create database test_$1;
create table test_$1.t3 like t1;
create temporary table t3 like test_$1.t3;
show create table t3;
Table	Create Table
t3	CREATE TEMPORARY TABLE `t3` (
  `id` int(11) NOT NULL default '0',
312
  `name` char(20) default NULL
unknown's avatar
unknown committed
313
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
314 315 316 317 318
create table t2 like t3;
show create table t2;
Table	Create Table
t2	CREATE TABLE `t2` (
  `id` int(11) NOT NULL default '0',
319
  `name` char(20) default NULL
unknown's avatar
unknown committed
320
) ENGINE=MyISAM DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
321 322
select * from t2;
id	name
unknown's avatar
unknown committed
323 324
create table t3 like t1;
create table t3 like test_$1.t3;
325
ERROR 42S01: Table 't3' already exists
unknown's avatar
unknown committed
326 327 328
create table non_existing_database.t1 like t1;
Got one of the listed errors
create table t3 like non_existing_table;
329
ERROR 42S02: Unknown table 'non_existing_table'
unknown's avatar
unknown committed
330
create temporary table t3 like t1;
331
ERROR 42S01: Table 't3' already exists
unknown's avatar
unknown committed
332
create table t3 like `a/a`;
333
ERROR 42000: Incorrect table name 'a/a'
unknown's avatar
unknown committed
334 335 336
drop table t1, t2, t3;
drop table t3;
drop database test_$1;
unknown's avatar
unknown committed
337 338 339
SET SESSION storage_engine="heap";
SELECT @@storage_engine;
@@storage_engine
340 341 342 343 344 345
HEAP
CREATE TABLE t1 (a int not null);
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) NOT NULL default '0'
unknown's avatar
unknown committed
346
) ENGINE=HEAP DEFAULT CHARSET=latin1
347
drop table t1;
unknown's avatar
unknown committed
348
SET SESSION storage_engine="gemini";
349
ERROR 42000: Unknown table engine 'gemini'
unknown's avatar
unknown committed
350 351
SELECT @@storage_engine;
@@storage_engine
352
HEAP
353 354 355 356 357
CREATE TABLE t1 (a int not null);
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) NOT NULL default '0'
unknown's avatar
unknown committed
358
) ENGINE=HEAP DEFAULT CHARSET=latin1
unknown's avatar
unknown committed
359
SET SESSION storage_engine=default;
360
drop table t1;
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
create table t1(a int,b int,c int unsigned,d date,e char,f datetime,g time,h blob);
insert into t1(a)values(1);
insert into t1(a,b,c,d,e,f,g,h)
values(2,-2,2,'1825-12-14','a','2003-1-1 3:2:1','4:3:2','binary data');
select * from t1;
a	b	c	d	e	f	g	h
1	NULL	NULL	NULL	NULL	NULL	NULL	NULL
2	-2	2	1825-12-14	a	2003-01-01 03:02:01	04:03:02	binary data
select a, 
ifnull(b,cast(-7 as signed)) as b, 
ifnull(c,cast(7 as unsigned)) as c, 
ifnull(d,cast('2000-01-01' as date)) as d, 
ifnull(e,cast('b' as char)) as e,
ifnull(f,cast('2000-01-01' as datetime)) as f, 
ifnull(g,cast('5:4:3' as time)) as g,
ifnull(h,cast('yet another binary data' as binary)) as h,
addtime(cast('1:0:0' as time),cast('1:0:0' as time)) as dd 
from t1;
a	b	c	d	e	f	g	h	dd
1	-7	7	2000-01-01	b	2000-01-01 00:00:00	05:04:03	yet another binary data	02:00:00
2	-2	2	1825-12-14	a	2003-01-01 03:02:01	04:03:02	binary data	02:00:00
create table t2
select
a, 
ifnull(b,cast(-7                        as signed))   as b,
ifnull(c,cast(7                         as unsigned)) as c,
ifnull(d,cast('2000-01-01'              as date))     as d,
ifnull(e,cast('b'                       as char))     as e,
ifnull(f,cast('2000-01-01'              as datetime)) as f,
ifnull(g,cast('5:4:3'                   as time))     as g,
ifnull(h,cast('yet another binary data' as binary))   as h,
addtime(cast('1:0:0' as time),cast('1:0:0' as time))  as dd
from t1;
explain t2;
Field	Type	Null	Key	Default	Extra
a	int(11)	YES		NULL	
b	bigint(11)			0	
c	bigint(10)			0	
399
d	date	YES		NULL	
400
e	char(1)				
401 402
f	datetime	YES		NULL	
g	time	YES		NULL	
403
h	longblob				
404
dd	time	YES		NULL	
405 406 407 408 409
select * from t2;
a	b	c	d	e	f	g	h	dd
1	-7	7	2000-01-01	b	2000-01-01 00:00:00	05:04:03	yet another binary data	02:00:00
2	-2	2	1825-12-14	a	2003-01-01 03:02:01	04:03:02	binary data	02:00:00
drop table t1, t2;
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp, l datetime, m enum('a','b'), n set('a','b'), o char(10));
create table t2 select ifnull(a,a), ifnull(b,b), ifnull(c,c), ifnull(d,d), ifnull(e,e), ifnull(f,f), ifnull(g,g), ifnull(h,h), ifnull(i,i), ifnull(j,j), ifnull(k,k), ifnull(l,l), ifnull(m,m), ifnull(n,n), ifnull(o,o) from t1;
show create table t2;
Table	Create Table
t2	CREATE TABLE `t2` (
  `ifnull(a,a)` tinyint(4) default NULL,
  `ifnull(b,b)` smallint(6) default NULL,
  `ifnull(c,c)` mediumint(9) default NULL,
  `ifnull(d,d)` int(11) default NULL,
  `ifnull(e,e)` bigint(20) default NULL,
  `ifnull(f,f)` float(3,2) default NULL,
  `ifnull(g,g)` double(4,3) default NULL,
  `ifnull(h,h)` decimal(5,4) default NULL,
  `ifnull(i,i)` year(4) default NULL,
  `ifnull(j,j)` date default NULL,
  `ifnull(k,k)` datetime NOT NULL default '0000-00-00 00:00:00',
  `ifnull(l,l)` datetime default NULL,
  `ifnull(m,m)` char(1) default NULL,
  `ifnull(n,n)` char(3) default NULL,
  `ifnull(o,o)` char(10) default NULL
unknown's avatar
unknown committed
430
) ENGINE=MyISAM DEFAULT CHARSET=latin1
431
drop table t1,t2;
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
create table t1(str varchar(10) default 'def',strnull varchar(10),intg int default '10',rel double default '3.14');
insert into t1 values ('','',0,0.0);
describe t1;
Field	Type	Null	Key	Default	Extra
str	varchar(10)	YES		def	
strnull	varchar(10)	YES		NULL	
intg	int(11)	YES		10	
rel	double	YES		3.14	
create table t2 select default(str) as str, default(strnull) as strnull, default(intg) as intg, default(rel) as rel from t1;
describe t2;
Field	Type	Null	Key	Default	Extra
str	varchar(10)	YES		NULL	
strnull	varchar(10)	YES		NULL	
intg	int(11)	YES		NULL	
rel	double	YES		NULL	
drop table t1, t2;
448 449 450 451 452 453 454 455 456 457 458
create table t1(name varchar(10), age smallint default -1);
describe t1;
Field	Type	Null	Key	Default	Extra
name	varchar(10)	YES		NULL	
age	smallint(6)	YES		-1	
create table t2(name varchar(10), age smallint default - 1);
describe t2;
Field	Type	Null	Key	Default	Extra
name	varchar(10)	YES		NULL	
age	smallint(6)	YES		-1	
drop table t1, t2;
459 460 461 462 463 464 465 466 467 468 469 470
create database test_$1;
use test_$1;
select database();
database()
test_$1
drop database test_$1;
select database();
database()
NULL
select database();
database()
NULL