考虑我们有 2 个如下表:
products: id, name
(PK = id)
product_group1: product_id
(PK = a1_id)
(FK = a1_id REFRENCES a1)
product_group2: product_id
(PK = a1_id)
(FK = a1_id REFRENCES a1)
product_group3: product_id
(PK = a1_id)
(FK = a1_id REFRENCES a1)
问题是,我想设计一个approved_products
只接受来自 group1 和 group2(不是 group3)的产品的表格。
我怎样才能设计这样的桌子?(我正在使用 mysql 顺便说一句)