外層を剥がしてから質問を変更
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 ;
ただし、上記のクエリからの出力は、前のクエリとまったく同じであり、m.meterpointid=3008
が含まれていません1 210 S HWY 3 3008
何か案は?
ありがとうナレン