Alan_AI
Alan_AI

Reputation: 1569

can i perform cascaded delete using foreign key constraints in MySql 3.0?

can i perform cascaded delete using foreign key constraints in MySql 3.0 ?

Upvotes: 0

Views: 77

Answers (1)

Alex Martelli
Alex Martelli

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

Related Questions