this is the general syntax for creating tables
CREATE TABLE
[ database_name . [ schema_name ] . | schema_name . ] table_name
( column_name <data_type> [ NULL | NOT NULL ] [ ,...n ] )
so using your code to create a sample table(even though i don't know what you want to call the table from your code so am using 'personel')
CREATE TABLE Personel
(ID INT NOT NULL,
Name VARCHAR(40) NOT NULL)
Netcode
Veteran Poster
1,021 posts since Jun 2009
Reputation Points: 43
Solved Threads: 67