🏚️

Sql Insert Query if not exist

TechnologySql
Editor of the PageLatif Bahadır ALTUN
BEGIN
   IF NOT EXISTS (SELECT * FROM TableName
                   WHERE Field = @Field)
   BEGIN
       INSERT INTO TableName(Field)
       VALUES (@Field)
   END
END