I found this SQL generated by visual studio on an asp.net project. I'm trying to run the SQL script directly, however the brackets are causing syntax errors in SQL Server. Any idea why Visual Studio generates the brackets?
I am not a Microsoft developer so this is total new to me. All I know is that this uses ADO.NET,... I think.
CREATE TABLE [dbo].[_Something] (
[Client] NVARCHAR(50) NULL,
.
.
)
I will not accept any answer referring to using Visual Studio GUI. I want to know the reason why Visual Studio generates this type of SQL, not how to fix the syntax error.