1
CREATE TABLE product (category INT NOT NULL, id INT NOT NULL,
3
PRIMARY KEY(category, id)) ENGINE=INNODB;
4
CREATE TABLE customer (id INT NOT NULL,
5
PRIMARY KEY (id)) ENGINE=INNODB;
6
CREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT,
7
product_category INT NOT NULL,
8
product_id INT NOT NULL,
9
customer_id INT NOT NULL,
11
INDEX (product_category, product_id),
12
FOREIGN KEY (product_category, product_id)
13
REFERENCES product(category, id)
14
ON UPDATE CASCADE ON DELETE RESTRICT,
16
FOREIGN KEY (customer_id)
17
REFERENCES customer(id)) ENGINE=INNODB;
18
show create table product_order;
20
product_order CREATE TABLE `product_order` (
21
`no` INT NOT NULL AUTO_INCREMENT,
22
`product_category` INT NOT NULL,
23
`product_id` INT NOT NULL,
24
`customer_id` INT NOT NULL,
26
KEY `product_category` (`product_category`,`product_id`),
27
KEY `customer_id` (`customer_id`),
28
CONSTRAINT `product_order_ibfk_1` FOREIGN KEY (`product_category`, `product_id`) REFERENCES `product` (`category`, `id`) ON UPDATE CASCADE ON DELETE RESTRICT,
29
CONSTRAINT `product_order_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`id`)
30
) ENGINE=InnoDB COLLATE = utf8_general_ci
31
drop table product_order, customer, product;
32
drop table if exists t_34455;
33
create table t_34455 (
35
foreign key (a) references t3 (a) match full match partial);
36
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match partial)' at line 3
37
create table t_34455 (
39
foreign key (a) references t3 (a) on delete set default match full);
40
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match full)' at line 3
41
create table t_34455 (
43
foreign key (a) references t3 (a) on update set default match full);
44
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match full)' at line 3
45
create table t_34455 (
47
foreign key (a) references t3 (a)
48
on delete set default on delete set default);
49
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'delete set default)' at line 4
50
create table t_34455 (
52
foreign key (a) references t3 (a)
53
on update set default on update set default);
54
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'update set default)' at line 4
55
create table t_34455 (a int not null);
57
add foreign key (a) references t3 (a) match full match partial);
58
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match partial)' at line 1
60
add foreign key (a) references t3 (a) on delete set default match full);
61
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match full)' at line 1
63
add foreign key (a) references t3 (a) on update set default match full);
64
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'match full)' at line 1
66
add foreign key (a) references t3 (a)
67
on delete set default on delete set default);
68
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'delete set default)' at line 2
70
add foreign key (a) references t3 (a)
71
on update set default on update set default);
72
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'update set default)' at line 2