in mysql, on delete cascade not working

前端 未结 4 1819
长情又很酷
长情又很酷 2021-01-17 13:04

similar to ON DELETE CASCADE not working in MySQL, but something is not right:

The ANSI Way

-- test delet         


        
4条回答
  •  孤街浪徒
    2021-01-17 13:21

    (assuming that should be a "foreign key" not a "primary key" in table t2)

    MySQL simply ignores all inline foreign key constraints without a warning.

    Therefore, you need to explicitly add a foreign key constraint as shown by dnagirl.

提交回复
热议问题