if not exists (select * from sysobjects where name='users' and xtype='U') create table users( id int identity(1,1), email nvarchar(255) null, name nvarchar(255) not null, password varchar(255) null, PRIMARY KEY(id) );