Guest User

Untitled

a guest
Jan 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. TABLE [fees] (
  2. [feeid] bigint NOT NULL IDENTITY (1,1)
  3. , [acno] int NULL DEFAULT 0
  4. , [billingmonth] nvarchar(10) NULL
  5. , [oldbal] numeric(18,2) NULL DEFAULT 0
  6. , [duedtamt] numeric(18,2) NULL DEFAULT 0
  7. , [afterdtamt] numeric(18,2) NULL DEFAULT 0
  8. , [bal] numeric(18,2) NULL DEFAULT 0
  9. , [depamt] numeric(18,2) NULL DEFAULT 0
  10. , [totdpo] numeric(18,2) NULL DEFAULT 0
  11. , [depdt] datetime NULL)
Add Comment
Please, Sign In to add comment