有以下一个表movestar(id,name,title,address),内容为:现在要查找所有具有相同的title和address的人复制代码代码如下:selectstar1.name,star2.name,star1.title,star1.addressfrommovestarasstar1,movestarasstar2wherestar1.title=star2.title andstar1.address=star2.address andstar1.name<star2.name;结果:要点:使用了<,假如用<>则会将内容重复列出以上就是SQL中查找某几个字段完全一样的数据的全部内容,希望能给大家一个参考,也希望大家多多支持脚本之家。
有以下一个表
movestar(id,name,title,address),内容为:
现在要查找所有具有相同的title和address的人
from movestar as star1,movestar as star2
where star1.title = star2.title
and star1.address = star2.address
and star1.name < star2.name;
结果:
要点:使用了<,假如用<>则会将内容重复列出
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!