Reputation: 1569
can i perform cascaded delete using foreign key constraints in MySql 3.0 ?
Upvotes: 0
Views: 77
Reputation: 882093
No, as the docs mention,
ON DELETE CASCADE is supported starting from MySQL 3.23.50
so your 3.0 is just too old for it.
Upvotes: 1