SQL中查找某幾個字段完整一樣的數據。本站提示廣大學習愛好者:(SQL中查找某幾個字段完整一樣的數據)文章只能為提供參考,不一定能成為您想要的結果。以下是SQL中查找某幾個字段完整一樣的數據正文
有以下一個表
movestar(id,name,title,address),內容為:
如今要查找一切具有雷同的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;
成果:
要點:應用了<,假設用<>則會將內容反復列出
以上就是SQL中查找某幾個字段完整一樣的數據的全體內容,願望能給年夜家一個參考,也願望年夜家多多支撐。