financing_examples.sql 1017 B

1234567891011121314151617181920212223242526272829
  1. CREATE TABLE [dbo].[financing_examples] (
  2. [id] [int] NOT NULL,
  3. [initial_payment] [numeric](11,2) NULL,
  4. [loan_amount] [numeric](11,2) NULL,
  5. [number_rates] [int] NULL,
  6. [annual_percentage_rate] [numeric](6,2) NULL,
  7. [debit_interest] [numeric](6,2) NULL,
  8. [debit_interest_type] [varchar](100) NULL,
  9. [monthly_rate] [numeric](11,2) NULL,
  10. [differing_first_rate] [numeric](11,2) NULL,
  11. [last_rate] [numeric](11,2) NULL,
  12. [rate_insurance] [numeric](11,2) NULL,
  13. [acquisition_fee] [numeric](11,2) NULL,
  14. [total] [numeric](11,2) NULL,
  15. [interest_free_credit_until] [datetime] NULL,
  16. [interest_free_credit_amount] [numeric](11,2) NULL,
  17. [due_date] [int] NULL,
  18. [due_date_last_rate] [int] NULL,
  19. [bank_customer_no] [int] NULL,
  20. [source] [varchar](50) NULL,
  21. [referenced_dealer_vehicle_type] [varchar](10) NULL,
  22. [referenced_dealer_vehicle_no] [int] NULL,
  23. [client_db] [varchar](20) NOT NULL
  24. ,CONSTRAINT [financing_examples$0] PRIMARY KEY CLUSTERED ([id], [client_db])
  25. )
  26. GO