Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Sintassi errata vicino a ')'. durante la creazione della tabella

autoincrement non è una parola chiave di SQL Server. Penso che tu intenda:

 string sqlStatement2 = "CREATE TABLE " + Table2Name + "" + 
                         "(line_id int not null identity(1, 1) PRIMARY KEY, " +
                          "line_full_name CHAR(50) NOT NULL," +
                          " network_id INTEGER FOREIGN KEY REFERENCES network(network_id))";

Inoltre, FOREIGN KEY richiede un riferimento alla tabella.