当前位置:Gxlcms > mysql > 记一次SQLServerInsert触发器编写过程

记一次SQLServerInsert触发器编写过程

时间:2021-07-01 10:21:17 帮助过:68人阅读

实现功能:新增特定类型的新闻时,自动追加特定的背景图片。 第一版(错误信息: 不能在 'inserted' 表和 'deleted' 表中使用 text、ntext 或 image 列 ),代码如下: (, ) ) drop trigger tgr_news_QA_insert tgr_news_QA_insert on news , ; id, , @newstyp

实现功能:新增特定类型的新闻时,,自动追加特定的背景图片。

第一版(错误信息:不能在 'inserted' 表和 'deleted' 表中使用 text、ntext 或 image 列),代码如下:

(, ) ) drop trigger tgr_news_QA_insert tgr_news_QA_insert on news , ; id, , @newstype = newstype from inserted news id

人气教程排行