Files
tidb/lightning/tests/lightning_foreign_key/data/fk.child-schema.sql
2024-04-02 04:24:23 +00:00

2 lines
99 B
SQL

create table child (id int key, pid int, constraint fk_1 foreign key (pid) references parent(id));