I have the code:
USE pricingdb
go
CREATE TABLE dbo.Fin_Options_Specs (
column1 NVARCHAR(255),
column2 NVARCHAR(255),
column3 DOUBLE
);
Go
And I’m trying to create a 3-column table using SQL. The names of the columns will be changed later, and that isn’t the issue. However, I keep getting the error
“Incorrect syntax near ‘)’.”
There is no datatype of
DOUBLE. You probably want aNumeric(18, 5)or another one likefloat.MSDN DataTypes