windows changes
[csql.git] / test / tools / csql / autocommit6.sql
blob5c2ba9efa3046a7466ca62516405535d54b05781
1 echo create table t1(f1 int not null,f2 int,f3 int);
2 create table t1(f1 int not null,f2 int,f3 int);
3 echo insert into t1 values(1,2,3);
4 insert into t1 values(1,2,3);
5 echo insert into t1 values(10,20,30);
6 insert into t1 values(10,20,30);
7 echo insert into t1 values(100,200,300);
8 insert into t1 values(100,200,300);
9 echo insert into t1 values(1000,2000,3000);
10 insert into t1 values(1000,2000,3000);
11 echo select * from t1;
12 select * from t1;
13 echo update t1 set f2=3333, f3=4444 where f1>=100;
14 update t1 set f2=3333,f3=4444 where f1>=100;