code reorg for Transactionw!
[csql.git] / test / sql / Join / insert_t1_t2.sql
blobfbf83bb2d403c35d66f9f5d87eaaf1a93e479341
1 echo insert into t1 values(101,100);
2 insert into t1 values(101,100);
3 echo insert into t1 values(303,333);
4 insert into t1 values(303,333);
5 echo insert into t1 values(505,555);
6 insert into t1 values(505,555);
7 echo insert into t2 values(505,100);
8 insert into t2 values(505,100);
9 echo insert into t2 values(100,101);
10 insert into t2 values(100,101);
11 echo insert into t2 values(404,444);
12 insert into t2 values(404,444);
13 echo insert into t2 values(303,333);
14 insert into t2 values(303,333);
15 echo insert into t2 values(101,100);
16 insert into t2 values(101,100);
17 echo select * from t1;
18 select * from t1;
19 echo select * from t2;
20 select * from t2;