adding test scripts
[csql.git] / test / tools / csql / foreign8.sql
blob0260f3f61c223db26cc466ce50d6784b717a2e70
1 echo CREATE TABLE t1(f1 int,f2 int,primary key(f1));
2 CREATE TABLE t1(f1 int,f2 int,primary key(f1));
3 echo CREATE TABLE t2(f3 int,f4 int);
4 CREATE TABLE t2(f3 int,f4 int);
5 echo CREATE TABLE t3(f5 int,f6 int,foreign key(f5) references t1(f1),foreign key(f6) references t2(f3) );
6 CREATE TABLE t3(f5 int,f6 int,foreign key(f5) references t1(f1),foreign key(f6) references t2(f3) );