doxygen documentation
[csql.git] / test / tools / csql / insertat_child_wthout_parent.sql
blobcf28492c76b12965085471a1b1015d60032e8d47
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 INSERT INTO t2 VALUES(1,10);