if not Exists(SELECT * FROM information_schema.tables where Table_name = 'Help') begin create table dbo.Help ( ID int primary key, Place_ID int references Places(ID) not null, Title nvarchar(200), Body nvarchar(max), Tag nvarchar(200), Dom_ID_Status int references Domain(ID) not null, -- فعال/غیرفعال Kar_ID_Creator int references karbar(Id) not null, TarikhSabt int not null, SaatSabt int not null ) end