insert where问题

本意是要在保存记录的同时验证是否有重复记录!木有即可保存

insert into Table values Value where not exists(sql)

这是错误的!!

可以用if解决此问题

if not exists (sql) insert into Table values Value

原文地址:https://www.cnblogs.com/hpuCode/p/2434525.html