1
drop table if exists t1;
3
a int not null references t2,
4
b int not null references t2 (c),
6
foreign key (a) references t3 match full,
7
foreign key (a) references t3 match partial,
8
foreign key (a,b) references t3 (c,d) on delete no action
10
foreign key (a,b) references t3 (c,d) on update cascade,
11
foreign key (a,b) references t3 (c,d) on delete set default,
12
foreign key (a,b) references t3 (c,d) on update set null);
13
create index a on t1 (a);
14
create unique index b on t1 (a,b);
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;
16
32
drop table if exists t_34455;
17
33
create table t_34455 (
19
35
foreign key (a) references t3 (a) match full match partial);
20
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match partial)' at line 3
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
21
37
create table t_34455 (
23
39
foreign key (a) references t3 (a) on delete set default match full);
24
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match full)' at line 3
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
25
41
create table t_34455 (
27
43
foreign key (a) references t3 (a) on update set default match full);
28
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match full)' at line 3
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
29
45
create table t_34455 (
31
47
foreign key (a) references t3 (a)
32
48
on delete set default on delete set default);
33
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'delete set default)' at line 4
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
34
50
create table t_34455 (
36
52
foreign key (a) references t3 (a)
37
53
on update set default on update set default);
38
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'update set default)' at line 4
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
39
55
create table t_34455 (a int not null);
40
56
alter table t_34455
41
57
add foreign key (a) references t3 (a) match full match partial);
42
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match partial)' at line 2
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
43
59
alter table t_34455
44
60
add foreign key (a) references t3 (a) on delete set default match full);
45
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match full)' at line 2
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
46
62
alter table t_34455
47
63
add foreign key (a) references t3 (a) on update set default match full);
48
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'match full)' at line 2
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
49
65
alter table t_34455
50
66
add foreign key (a) references t3 (a)
51
67
on delete set default on delete set default);
52
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'delete set default)' at line 3
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
53
69
alter table t_34455
54
70
add foreign key (a) references t3 (a)
55
71
on update set default on update set default);
56
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'update set default)' at line 3
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
57
73
drop table t_34455;