2008年8月15日 星期五

SQL SERVER trigger 中的 SQL 語法範例

update

update a set c1=i.c1 from inserted i,table1 a where i.id=a.id;

insert

insert into table1 (c1) select c1 from inserted;


inserted 代表新增或更新的資料列表格

沒有留言:

vue3-simple-alert 學習心得

官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({     title: '請輸入原因',     input: 'text',     showCancel...