initial commit

This commit is contained in:
Peter Wood
2022-07-15 15:37:20 -04:00
parent 70a85b6024
commit 27e7c7829c
13 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
use Leo
go
create proc dbo.proc_CreateTransaction (
@date date, @description varchar(200), @amount decimal(11,2)
)
as
begin
set @date = isnull(@date, getdate())
insert into dbo.BUDGET_DETAIL (TrxDate, TrxDescription, TrxAmount)
select @date, @description, @amount
select SCOPE_IDENTITY()
end
go