상세 컨텐츠

본문 제목

업데이트 트리거

청강컴정/DataBase

by luckey 2009. 5. 4. 17:31

본문

create trigger TRG_CAFE_UPDATE on cafe
for update
as
begin
 if update(name)
 begin
  update cafe
  set description = '반갑습니다. ' + name + '입니다.'
  where sn = (select sn from inserted)
 end
end

update cafe set name = '교대피플' where name = '교대People'

관련글 더보기

댓글 영역