Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 before insert 选项的触发器,在触发器内我将数据插入到同一个表中。SQL 将如何处理此类问题,因为这会导致创建无限触发器。
例如:
Create trigger trigger_name on Employee before insert as insert on table Employee values(1001, 'chas'); go
谢谢您的帮助