欢迎来到代码驿站!

MsSql

当前位置:首页 > 数据库 > MsSql

SQL中查找某几个字段完全一样的数据

时间:2022-06-03 11:08:19|栏目:MsSql|点击:

有以下一个表

movestar(id,name,title,address),内容为:

//img.jbzj.com/file_images/article/201606/201606081037581.jpg

现在要查找所有具有相同的title和address的人

复制代码 代码如下:
select star1.name,star2.name,star1.title,star1.address
from movestar as star1,movestar as star2
where star1.title = star2.title
    and star1.address = star2.address
    and star1.name < star2.name;

结果:

//img.jbzj.com/file_images/article/201606/201606081037592.jpg

要点:使用了<,假如用<>则会将内容重复列出

上一篇:sql server把退款总金额拆分到尽量少的多个订单中详解

栏    目:MsSql

下一篇:没有了

本文标题:SQL中查找某几个字段完全一样的数据

本文地址:http://www.codeinn.net/misctech/203589.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有