改變剝離外層之後的問題查詢返回的結果是否一致?
我使用的MySQL 5.1
select s.status, street, m.meterpointid
from meterpoint m inner join account a
on (m.accountid = a.accountid) inner join
meterservice s
on (m.meterpointid = s.meterpointid)
where a.citystateid=1 and m.meterpointid=3008 and m.lastupdate is not null
group by status, street ;
上述查詢返回
1 210 S HWY 3 3008
select s.status, street, m.meterpointid
from meterpoint m inner join account a
on (m.accountid = a.accountid) inner join
meterservice s
on (m.meterpointid = s.meterpointid)
where a.citystateid=1 and m.lastupdate is not null
group by status, street ;
但是從上面的查詢其輸出與之前沒有的查詢完全相同不包含1 210 S HWY 3 3008
任何想法?
感謝 那仁
不客氣。此外,由於您是StackOverflow的新用戶,因此我想告訴您,您可以通過查看答案旁邊的勾號來獲得最佳答案並接受最能幫助您的答案。在這個網站上upvote或接受的答案算作「謝謝」。 –