adding test scripts
[csql.git] / test / tools / csql / drop_fk_fk_pk.sql
blob156bcb623fe835b38dfa620ce71bd707cb4ff959
1 CREATE TABLE t1(f1 INT,f2 INT, PRIMARY KEY(f1));
2 CREATE TABLE t2(f1 INT,f2 INT,FOREIGN KEY(f1) REFERENCES t1(f1));
3 CREATE TABLE t3(f1 INT,f2 INT,FOREIGN KEY(f1) REFERENCES t1(f1));
4 drop table t2;
5 drop table t3;
6 drop table t1;