I have a table containing users and locations where they were seen:
user_id | latitude | longitude | date_seen
-------------------------------------------
1035 | NULL | NULL | April 25 2010
1035 | 127 | 35 | April 28 2010
1038 | 127 | 35 | April 30 2010
1037 | NULL | NULL | May 1 2010
1038 | 126 | 34 | May 21 2010
1037 | NULL | NULL | May 24 2010
这些日期是数据库中定期安装的时间;我在此简化了这些日期。
我需要获得一份使用者名单,其纬度和长度总是无效。 因此,在上述例子中,用户1037-用户1035有一行,有相对/吨信息,1038有两行,有相对/吨信息,而用户1037,两行的信息均无效。
What query can I use to achieve this result?