I'm trying create a table by using scripts. When I execute the query it tells me that the query and worked successfully however when I try find the table "Setting" I created I can't. I don't know where I can find it.
CREATE TABLE [dbo].[Setting]
(
[Id] INT NOT NULL IDENTITY(1,1),
[Key] VARCHAR(50) NOT NULL,
CONSTRAINT [PK_Setting] PRIMARY KEY ([ID])
);
Any help would be much appreciated
Go to the complete details ...