mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-05-11 13:21:30 +03:00
9 lines
247 B
SQL
9 lines
247 B
SQL
-- Create table with named references constraint and on delete action
|
|
CREATE TABLE calpont.PART_1453
|
|
(p_29 numeric(5,2) primary key,
|
|
constraint fooby
|
|
foreign key (p_29)
|
|
references Customers(p_partkey)
|
|
on delete restrict)
|
|
engine=infinidb;
|