18 lines
233 B
Markdown
18 lines
233 B
Markdown
|
---
|
||
|
title: 触发器
|
||
|
date: 2024-06-06T23:51:43Z
|
||
|
tags: []
|
||
|
---
|
||
|
## instead of(事前触发器)
|
||
|
|
||
|
## After(事后触发器)
|
||
|
|
||
|
## 创建触发器
|
||
|
|
||
|
```sql
|
||
|
create triggrt 触发器名字 on 表名 [instead of | After] 操作类型
|
||
|
AS
|
||
|
|
||
|
GO
|
||
|
```
|