--表变量
declare @tmp table(id int default(0), deptID int)
insert into @tmp(deptid)select distinct deptID from doc
--随机更新一个对应的doc表id上去
update a set aid=bid from @tmp as a,doc as b where adeptID=bdeptID
select a,b from dept as a,doc as b,@tmp as c where aid=cdeptID and bid=cid
我们需要准备的材料分别是:电脑、sql查询器。
1、首先,打开sql查询器,连接上要查询的数据库表,例如test2表。
2、点击“查询”按钮,输入:select A,B,C from test2 group by A;。
3、点击“运行”按钮,这时字段A会以不重复的形式被查询出所有数据。
String name = xx(这里写你获取到的准备插入的name的值)
select name from (这里写你的表名) where name = xx;
ResustSet rs = (执行上句话生成结果集)
if(rsnext()){ (这里写发现重复时的 *** 作)
]
else{ (这里写正式的插入语句)
}
以上就是关于sql server 数据库 查询不重复的记录全部的内容,包括:sql server 数据库 查询不重复的记录、sql语句要select某字段不重复的数据应该如何写、向数据库插入的数据不重复,如何用Java做验证等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)