1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-05-11 13:21:30 +03:00
2016-01-06 14:08:59 -06:00

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;