You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
ExecuteNonQuery==========
|
|
CREATE TABLE [CheckIfTableExistsTable] (
|
|
[StudentId] int NOT NULL IDENTITY,
|
|
[Notes] text NULL,
|
|
[StudentName] varchar(50) NOT NULL,
|
|
CONSTRAINT [PK_Students] PRIMARY KEY ([StudentId])
|
|
);
|
|
|
|
|
|
ExecuteNonQuery==========
|
|
DROP TABLE [CheckIfTableExistsTable]
|
|
|