ALTER trigger [dbo].[trg_Billing_TotalFee] on [dbo].[tblBilling] after insert as insert into tblTotalFee(DueFromPreviousMonth,StudentID,MonthName) select RemainingAmount,StudentID,MonthName from inserted
这是我的触发器。我想要的是代替MonthName我想要tbltotalfee中的MonthName++即假设 tblBilling 中的 MonthName 是一月然后在tblTotalFee我希望将月份插入为Febraury 。我该怎么做?