asp.net数据去重

2025-01-02 02:53:30
推荐回答(2个)
回答1:

用sql判断就好了,比如:
string sql = @"insert tb1(id, name,age)
select 111,'张三', 22 from dual
where not exists(select 1 from tb1 where id=111 and name='张三')
";
然后判断ExecuteNonQuery返回值,如果是0表示添加失败,如果是1表示添加成功
over

回答2:

是写存储过程还是C#代码呢?