Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. CREATE TABLE dbo.TaxNotice
  2. (
  3. NoticeNumber INT PRIMARY KEY NOT NULL,
  4. NoticeType INT,
  5. BalenceDue DECIMAL(13, 4)
  6. --PaymentDataID INT
  7. );
  8.  
  9. CREATE TABLE dbo.PaymentData
  10. (
  11. ID INT PRIMARY KEY,
  12. AmountPaid DECIMAL(13, 4),
  13. ReceiptNumber INT,
  14. CheckNumber INT,
  15. RemitterName VARCHAR(255),
  16. CashAmount DECIMAL(13, 4),
  17. CheckAmount DECIMAL(13, 4),
  18. CreditCardAmount DECIMAL(13, 4)
  19. );
  20.  
  21.  
  22. CREATE TABLE dbo.TaxNoticePaymentData
  23. (
  24. ID INT,
  25. NoticeNumber INT,
  26. PaymentID INT
  27. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement