sql语句判断数据库中是否有记录,有的话就更新这条数据,没有就新插入该条记录。
例如:表【Product】,其中列【ID】是主键,唯一,【ProductName】是产品名称,【kucun】是库存量,默认1。
if exists(select ID from Product where ID=123) begin Update Product Set kucun=kucun+1 Where ID=123 end else begin insert into Product (ID) values (123) end
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/966.html