if not Exists(SELECT * FROM information_schema.tables where Table_name = 'TafsiliRole') begin create table TafsiliRole ( ID int Primary key identity (1,1), Taf_ID bigint references Tafsili(ID) not null, Dom_ID int references Domain(ID) not null ) end