我有两张table-
part(partID, brand, price, size)
consists_of(customerID, partID, quantity, price, shipdate)
|
FK part.ID from part
表 part
永远不会被改变/更新,但是 consists_of
将。
如何在上添加[插入前?]触发器 consists_of
检查是否 consists_of.price
对于每个条目小于或等于 consists_of.quantity * part.price
对于那个特殊的 consists_of.partID
如果不是这样的话会引起流产吗?
或者,
如何添加[插入后?]触发器 consists_of
是的 INSERT INTO consists_of(price) VALUES (...)
其中 consists_of.price
等于 consists_of.quantity * part.price
为了这个 consists_of.partID
?
1条答案
按热度按时间tjjdgumg1#
如果我理解正确,你可以选择
part.price
在子查询和计算中part.price * consists_of.quantitiy
.插入前
插入后