adding test scripts
[csql.git] / test / tools / csql / drop_fk_pk_fk.sql
blob9380cb2c372a70d21141087c4ff75ebdd928a578
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 t1;