Table: Quotes
CREATE TABLE [dbo].[quotes]
( [quote_ID] [varchar](18) NOT NULL, [contact_ID] [varchar](18) NOT NULL, [product_ID] [varchar](18) NOT NULL, [opportunity_ID] [varchar](18) NOT NULL, [quote_version] [int] NOT NULL, [quote_price] [decimal](7, 2) NOT NULL, [quote_status] [varchar](15) NOT NULL, [comments] [varchar](255) NULL, [quote_description] [varchar](255) NULL, [LastUpdated] [date] NULL, [Opportunity_ForecastAmount] [varchar](18) NULL, [Quantity] [varchar](18) NULL)
Sample Data