我有一个表名 Service(product, loca, from_agent, to_agent)。
产品参考 产品(pno)
from_agent 引用 Customer(cno) U Driver(drno) U Airline(Ano)
to_agent 引用 Customer(cno) U Driver(drno) U Airline(ano)
cno = 客户编号,这是另一个表名称“客户”,其中包含其他详细信息,例如姓名、地址等
drno = Driver Number,这是另一个表名称“Driver”,其中包含其他详细信息,例如姓名、地址等
ano = Airline Number,这是另一个表名称“Airline”,其中包含其他详细信息,例如 depport、depttime、arrtime 等。
想编写一个触发器,强制在进行任何更改之前检查产品表中的外键。假设局部映射透明
请帮忙,我只是在学习触发器和分发数据库