创建触发器

Posted luoguixin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建触发器相关的知识,希望对你有一定的参考价值。

USE [DataServiceCenterDBNH]
GO

/****** Object: Trigger [dbo].[insertAir2019] Script Date: 01/07/2019 17:34:58 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO


-- ================================================
-- Template generated from Template Explorer using:
-- Create Trigger (New Menu).SQL
--
-- Use the Specify Values for Template Parameters
-- command (Ctrl-Shift-M) to fill in the parameter
-- values below.
--
-- See additional Create Trigger templates for more
-- examples of different Trigger statements.
--
-- This block of comments will not be included in
-- the definition of the function.
-- ================================================
-- =============================================
-- Author: <Author,符攸庆>
-- Create date: <Create Date,2018-12-12 20:30:50>
-- Description: <Description,空气质量数据同步南海库>
-- =============================================
CREATE TRIGGER [dbo].[insertAir2019]
ON [dbo].[Air_h_2019_M14999_Src]
AFTER insert
AS
BEGIN
declare @StationCode varchar(10), @TimePoint datetime, @PollutantCode varchar(5),@MonValue decimal(10, 3);
set @StationCode=‘A440605001‘;
select @TimePoint=TimePoint,@PollutantCode=PollutantCode,@MonValue=MonValue from inserted

insert into [Skyland.MSC.NH].[dbo].[Air_h_2019_A440605001_Src]([StationCode]
,[TimePoint]
,[PollutantCode]
,[MonValue])
values(@StationCode,@TimePoint,@PollutantCode,@MonValue);
END


GO

 






































以上是关于创建触发器的主要内容,如果未能解决你的问题,请参考以下文章

请问,在ACCESS中如何创建触发器?

MySQL如何创建每天0点自动运行的触发器?

MySQL如何创建每天0点自动运行的触发器?

MySQL数据库 如果触发器不存在 创建

我的 Serverless 实战 — 云函数与触发器的创建与使用 ( 开通腾讯云 “ 云开发 “ 服务 | 创建云函数 | 创建触发器 | 测试触发器 )

oracle创建触发器