adding test scripts
[csql.git] / test / tools / csql / foreign4.sql
blobc48aa1cd98cc86a1b77510cfcaac0524f505f303
1 echo CREATE TABLE t1(f1 int,f2 int,f3 int,primary key(f1,f2));
2 CREATE TABLE t1(f1 int,f2 int,f3 int,primary key(f1,f2));
3 echo CREATE TABLE t2(f1 int,f2 int,f3 int,foreign key(f1) references t1(f1));
4 CREATE TABLE t2(f1 int,f2 int,f3 int,foreign key(f1) references t1(f1));