newechoes/src/content/理解计算机/SQL SERVER/触发器.md

18 lines
233 B
Markdown
Raw Normal View History

2025-04-19 01:06:52 +08:00
---
title: 触发器
date: 2024-06-06T23:51:43Z
tags: []
---
## instead of(事前触发器)
## After(事后触发器)
## 创建触发器
```sql
create triggrt 触发器名字 on 表名 [instead of | After] 操作类型
AS
GO
```