Hello
Do u want to create table or insert value
both are here
create table
(
@ID int,
@ BillAmount decimal(10,2),
@Paid Amount decimal(10,2),
@BalanceAmount decimal(10,2)
)
insert into to yourtablename
(
ID
BillAmount
Paid Amount
BalanceAmount
) values(@ID, @ BillAmount ,@PaidAmount ,@BalanceAmount )