/ Published in: SQL
Dead simple, but often forgotten.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
BEGIN INSERT INTO [dbo].[TRANSACTION] ( [TotalAmountPaid] ,[TransactionDttm] ) VALUES ( @TotalAmountPaid ,@TransactionDttm ) SELECT SCOPE_IDENTITY() AS 'TransactionID' END