Sql Insert Query if not exist
Technology | Sql |
---|---|
Editor of the Page | Latif Bahadır ALTUN |
BEGIN
IF NOT EXISTS (SELECT * FROM TableName
WHERE Field = @Field)
BEGIN
INSERT INTO TableName(Field)
VALUES (@Field)
END
END