adding test scripts
[csql.git] / test / tools / csql / foreign146.sql
blobbdb9e05feb27e5e9288592c02c2c23008bc866c0
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,primary key(f3));
4 CREATE TABLE t2(f3 int,f4 int,primary key(f3));
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));