有以下一個表
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中查找某幾個字段完全一樣的數據的全部內容,希望能給大家一個參考,也希望大家多多支持幫客之家。