1
drop table if exists t1,t2,t3,t4;
2
drop table if exists t0,t5,t6,t7,t8,t9;
3
drop database if exists mysqltest;
4
drop view if exists v0, v1, v2, v3, v4;
5
create table T1 (id int primary key, Word varchar(40) not null, Index(Word));
6
create table t4 (id int primary key, Word varchar(40) not null);
7
INSERT INTO T1 VALUES (1, 'a'), (2, 'b'), (3, 'c');
8
INSERT INTO T4 VALUES(1,'match');
14
SELECT T1.id from T1 LIMIT 1;
17
SELECT T2.id from t1 as T2 LIMIT 1;
20
SELECT * from t1 left join t4 on (test.t1.id= TEST.t4.id) where TEST.t1.id >= test.t4.id;
23
SELECT T2.id from t1 as t2 LIMIT 1;
26
RENAME TABLE T1 TO T2;
27
ALTER TABLE T2 ADD new_col int not null;
28
ALTER TABLE T2 RENAME T3;
29
show tables like 't_';
34
create table t1 (a int);
35
select count(*) from T1;
38
select count(*) from t1;
41
select count(T1.a) from t1;
44
select count(bags.a) from t1 as Bags;
48
create database mysqltest;
50
create table t1 (a int);
51
select T1.a from MYSQLTEST.T1;
53
select t1.a from MYSQLTEST.T1;
55
select mysqltest.t1.* from MYSQLTEST.t1;
57
select MYSQLTEST.t1.* from MYSQLTEST.t1;
59
select MYSQLTEST.T1.* from MYSQLTEST.T1;
61
select MYSQLTEST.T1.* from T1;
63
alter table t1 rename to T1;
64
select MYSQLTEST.t1.* from MYSQLTEST.t1;
66
drop database mysqltest;
68
create table t1 (a int);
69
create table t2 (a int);
70
delete p1.*,P2.* from t1 as p1, t2 as p2 where p1.a=P2.a;
71
delete P1.*,p2.* from t1 as P1, t2 as P2 where P1.a=p2.a;
72
update t1 as p1, t2 as p2 SET p1.a=1,P2.a=1 where p1.a=P2.a;
73
update t1 as P1, t2 as P2 SET P1.a=1,p2.a=1 where P1.a=p2.a;
75
create table t1 (a int);
76
create table t2 (a int);
77
select * from t1 c, t2 C;
78
ERROR 42000: Not unique table/alias: 'C'
79
select C.a, c.a from t1 c, t2 C;
80
ERROR 42000: Not unique table/alias: 'C'
82
create table t1 (a int);
83
create table t2 like T1;
88
drop table if exists İ,İİ;
89
create table İ (s1 int);
93
`s1` int(11) DEFAULT NULL
94
) ENGINE=MyISAM DEFAULT CHARSET=latin1
99
create table İİ (s1 int);
100
show create table İİ;
102
İİ CREATE TABLE `ii` (
103
`s1` int(11) DEFAULT NULL
104
) ENGINE=MyISAM DEFAULT CHARSET=latin1