考虑 2 个表:
-- Table apples
id | randomstring | type TINYINT(1) DEFAULT 0
-- Table pears
id | randomstring | is_complete TINYINT(1) DEFAULT 0
很像 PHP 事件,是否可以检测到当字段 pears.is_complete
从 0 更新为 1 时,MySQL 会自动复制pears.randomstring
to的内容apples.randomstring
并将其值设置apples.type
为 1?
如果这在 MySQL 中是不可能的,是否可以在 PHP 中完成,当字段的值更改时调用 php 文件?