Is it possible to insert a row but only if a value does not already exist?

前端 未结 7 1834
谎友^
谎友^ 2021-02-04 05:26

Is it possible to insert a row, but only if one of the values already in the table does not exist?

I\'m creating a Tell A Friend with referral points for an eco

7条回答
  •  鱼传尺愫
    2021-02-04 05:55

    Most likely something like:

    IF NOT EXISTS(SELECT * FROM myTable WHERE Email=@Email) THEN INSERT INTO blah blah
    

    That can be rolled into one database query.

提交回复
热议问题