用sql判断就好了,比如:string sql = @"insert tb1(id, name,age)select 111,'张三', 22 from dualwhere not exists(select 1 from tb1 where id=111 and name='张三')";然后判断ExecuteNonQuery返回值,如果是0表示添加失败,如果是1表示添加成功over
是写存储过程还是C#代码呢?