ON DELETE CASCADE

时间:2011-03-30 22:28:11

标签: mysql

ALTER TABLE `phppos_items_taxes`
ADD CONSTRAINT `phppos_items_taxes_ibfk_1` 
FOREIGN KEY (`item_id`) 
REFERENCES `phppos_items` (`item_id`) 
ON DELETE CASCADE;

这是否意味着删除phppos_items.id时,它会删除phppos_items_taxes上的条目?

我很难解释它。

1 个答案:

答案 0 :(得分:1)

是的,但是你真的需要在物理上删除那个条目。有时最好在根实体中设置某种标志,这将告诉它是否应该作为删除/过滤