windows changes
[csql.git] / test / tools / csql / composite3.sql
blobedd3fba87cd8d909c52dedc2a59c029dc02dd777
1 echo create table t1(f1 int,f2 int,f3 int,f4 int,primary key(f2,f4));
2 create table t1(f1 int,f2 int,f3 int,f4 int,primary key(f2,f4));
3 echo insert into t1 values(1,2,3,4);
4 insert into t1 values(1,2,3,4);
5 echo insert into t1 values(1,2,5,4);
6 insert into t1 values(1,2,5,4);
7 echo select * from t1;
8 select * from t1;
9 echo drop table t1;
10 drop table t1;