*** empty log message ***
[csql.git] / test / tools / csql / drop_fk_pk.sql
blobdb1d8831553edf01c0b5e551d821439c64a05718
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 drop table t2;
4 drop table t1;