我有一个触发器,它驻留在SALES
表上的数据库中COMMISSIONS
。插入数据时,该字段RESPONSIBLE
将填写进行销售的销售人员的姓名。更新/插入后,触发器检查当前登录用户是否在PERSONNEL
表中的数据库(同一服务器)中有记录EMPLOYEES
就像是
if( select count(*)
from inserted t1
where t1.responsibleis null or t1.responsiblein ( select employee_name
from employees)
) <> @numrows
begin
select @errno = 30006, @errmsg = 'responsible is not an existing employee.'
goto error
end
我不明白的是:表 EMPLOYEES 与触发器位于不同的数据库中。这个触发器如何知道它应该在数据库中查找PERSONNEL
?
写这段代码的人走了。