由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - how to write this trigger
相关主题
question about SQL*LOADERSQL Server 2000 email alert的问题
[转载] 还是Oracle用得多呀, 哪里有入门教程?HELP!!! PL/SQL write to a file
Oracel, My SQL是不是case sensitive?扳机问题求助
how to include record deleted date into trigger?Archive一般用什么方法?
求教:Oracle trigger 中生成的数据如何送到stored procedure中?SQL SERVER 面试题, find the objects
PL/SQL, stored p, trigger etc..如何让SQL 2005 CLR Trigger返回结果给Stored Procedure用?
[转载] 真的没有人懂 ORACLE pro*c阿? :((((data transfer
No Need for trigger Re: oracle trigger question2 SQL SERVER Sr SQL Programmer positions (转载)
相关话题的讨论汇总
话题: trigger话题: write话题: update话题: sql话题: send
进入Database版参与讨论
1 (共1页)
w****n
发帖数: 266
1
I am working on my course project and build an application with DB.
How to write a SQL statement to arise an trigger when the inventory of a
product is less than 5?
thanks.
J*****u
发帖数: 44
2
不知道是不是这样的?你的inventory是在update还是在delete时fire trigger?
use "yourdb"
create trigger trg1 on dbo.yourdb
after update
as
begin
...
end
go
w****n
发帖数: 266
3
trigger是在update时 fire,
如果我的 qty attribute是在inventory这个 table里, 在Oracel sql developer里怎
么实现? SQL 怎么写?谢谢
s**********o
发帖数: 14359
4
FIRE TRIGER干吗啊,是SEND EMAIL NOTIFICATION么
TRIGGER每次UPDATE会FIRE不管是5+还是5-,只不过
FIRE了做什么可以不同
w****n
发帖数: 266
5
本意就想库存低于5时, send email notification, 这个怎么实现?
s**********o
发帖数: 14359
6
人不都给你写好了么,里面添加个SELET TEST一下QTY,如果小于5 SEND EMAIL,不就
行了

【在 w****n 的大作中提到】
: 本意就想库存低于5时, send email notification, 这个怎么实现?
w****n
发帖数: 266
7
还是不懂,能详细点吗? trigger老师就讲了概念,没讲怎么具体实现
s**********o
发帖数: 14359
8
假设UPDATE QTY触发CHECK QTY和SEND EMAIL
create TRIGGER SendEmailCheckQtyAfterUpdate
ON Table
AFTER UPDATE
AS
IF ( UPDATE (Quantity) )
BEGIN
if (select top quantity from table where productname= product)< 5
begin
send email
end
END
B*****g
发帖数: 34098
9
http://docs.oracle.com/cd/E11882_01/appdev.112/e10766/tdddg_tri

【在 w****n 的大作中提到】
: 还是不懂,能详细点吗? trigger老师就讲了概念,没讲怎么具体实现
w****n
发帖数: 266
10
谢谢大家的解答
1 (共1页)
进入Database版参与讨论
相关主题
2 SQL SERVER Sr SQL Programmer positions (转载)求教:Oracle trigger 中生成的数据如何送到stored procedure中?
大家对 Transaction 是怎么看的?PL/SQL, stored p, trigger etc..
德州招SQL Developer[转载] 真的没有人懂 ORACLE pro*c阿? :((((
In MySQL, 如何在procedure里create trigger?谢谢了?No Need for trigger Re: oracle trigger question
question about SQL*LOADERSQL Server 2000 email alert的问题
[转载] 还是Oracle用得多呀, 哪里有入门教程?HELP!!! PL/SQL write to a file
Oracel, My SQL是不是case sensitive?扳机问题求助
how to include record deleted date into trigger?Archive一般用什么方法?
相关话题的讨论汇总
话题: trigger话题: write话题: update话题: sql话题: send