I have the following code:
USE pricingdb go CREATE TABLE dbo.Events_060107_2012 ( Date_Time varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, Event_Type TEXT, Month_of_Year TEXT, Survey DOUBLE, Actual DOUBLE, Prior_Data DOUBLE, Revised DOUBLE, Relevance FLOAT, Ticker TEXT );
Go
And I get the error message:
"Incorrect syntax near ','. Level 15, State 1, Line 6"
I know that this should be a fairly simple problem to fix, but for some reason I had trouble understanding how to fix it. My knowledge of SQL is, at best, a beginner, so most of the other threads that I read were a bit above my head.
Thanks in advance for your help.
source share