summaryrefslogtreecommitdiff
path: root/mysql-test/t/insert.test
blob: cf6f41d454d171f5ae72753735d241d76deae0ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#
# Test of refering to old values
#

drop table if exists t1;
create table t1 (a int not null);
insert into t1 values (1);
insert into t1 values (a+2);
insert into t1 values (a+3);
insert into t1 values (4),(a+5);
select * from t1;
drop table t1;