Files
tidb/br/tests/lightning_foreign_key/data/fk.child-schema.sql
2022-12-29 21:34:19 +08:00

2 lines
99 B
SQL

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