I execute this query to create a table but I get few errors and I can not see were the mistake is can some one please take a look @ the script
Thank you
errors
Msg 102, Level 15, State 1, Line 31
Incorrect syntax near 'PLU_Number_Inventory_Prices'.

when I del that like I get the same error from the next line?

CREATE TABLE IMPORT_SCAN1
(
"Row_ID" INT NOT NULL,
"PLU_Number_INVENTORY" VARCHAR(14) NOT NULL,
"Alternate_PLU" VARCHAR(14) NULL DEFAULT NULL,
"Case_PLU" VARCHAR(14) NULL DEFAULT NULL,
"Plu_Description" VARCHAR(20) NULL DEFAULT NULL,
"Long_Description" VARCHAR(80) NULL DEFAULT NULL,
"Size" VARCHAR(5) NULL DEFAULT NULL,
"UOM" VARCHAR(2) NULL DEFAULT NULL,
"Brand_Number" INT NULL DEFAULT '0',
"Department_Number" SMALLINT NULL DEFAULT '0',
"Subdepartment_Number" VARCHAR(5) NULL DEFAULT NULL,
"Family_Number" SMALLINT NULL DEFAULT '0',
"Scale_Usage" TINYINT NULL DEFAULT '0',
"FoodStamps" BIT NULL DEFAULT '0',
"WIC" BIT NULL DEFAULT '0',
"WIC_FV" BIT NULL DEFAULT '0',
"WIC_Food_Group" INT NULL DEFAULT '0',
"Kit" BIT NULL DEFAULT NULL,
"FoodServiceItem" BIT NULL DEFAULT NULL,
"Store_Number" INT NULL DEFAULT NULL,
"Plu_Number_INVENTORY_HISTORY" VARCHAR(14) NOT NULL,
"Qty_Sold" DECIMAL(18,2) NULL DEFAULT NULL,
"Sales" DECIMAL(18,2) NULL DEFAULT NULL,
"Costs" DECIMAL(18,2) NULL DEFAULT NULL,
"Date" DATE NULL DEFAULT NULL,
"Month" INT NULL DEFAULT NULL,
"Qty_Received" DECIMAL(18,2) NULL DEFAULT NULL,
"Qty_Adjusted" DECIMAL(18,2) NULL DEFAULT NULL
"PLU_Number_Inventory_Prices" VARCHAR(14) NOT NULL,
"Pack_Size" SMALLINT NULL DEFAULT '1',
"Case_Cost" DECIMAL(18,4) NULL DEFAULT '0',
"Margin" DECIMAL(18,4) NULL DEFAULT '0',
"Markup" DECIMAL(18,4) NULL DEFAULT '0',
"Multiplier" TINYINT NULL DEFAULT '1',
"Price" DECIMAL(18,2) NULL DEFAULT '0',
"Formula_Number" SMALLINT NULL DEFAULT '0',
"Sale_Multiplier" TINYINT NULL DEFAULT NULL,
"Sale_Price" DECIMAL(18,2) NULL DEFAULT NULL,
"Sale_Limit" SMALLINT NULL DEFAULT NULL,
"Sale_Card_Needed" BIT NULL DEFAULT NULL,
"Sale_Starts" NCHAR(10) NULL DEFAULT NULL,
"Sale_Ends" NCHAR(10) NULL DEFAULT NULL,
"Sale_Formula_Number" SMALLINT NULL DEFAULT NULL,
"Sale_First_Date" DATETIME NULL DEFAULT NULL,
"Sale_Last_Date" DATETIME NULL DEFAULT NULL,
"Sale_Days" INT NULL DEFAULT NULL
"PLU_Number_Inventory_Taxes" VARCHAR(14) NOT NULL,
"Tax_Zone" INT NULL DEFAULT '1',
"Tax_1_Number" INT NULL DEFAULT '0',
"Tax_2_Number" INT NULL DEFAULT '0',
"Tax_3_Number" INT NULL DEFAULT '0'
)