id mobile uid uniqueid time
1 9999 1232 200100 10/6/15
2 9999 1232 200100 11/5/14
3 8888 1232 200100 18/4/16
4 9999 1232 200100 07/7/15
5 9999 1232 200100 4/11/16
表2
id Qid account
1 200100 123456
2 200100 123456
3 200100 123456
我根據移動號碼
我使用的查詢等
想僅非重複數據SELECT R.Id,R.MobileNo,R.UId,R.UniqueId,R.Time,
ISNULL(C.account,'Not Present'),
FROM table1 R LEFT JOIN table2 C
ON R.uniqueId=C.QId where
and R.deleteStatus='Y' and C.accountNos ='123456'
慾望輸出是
mobile uid uniqueid time account
9999 1232 200100 4/11/16 123456
8888 1232 200100 18/4/16 123456
我試過在sql server的每一件事情,但不能得到慾望輸出請幫助我!!!!!
聽起來像是你應該閱讀有關聚集。提示.... MAX(時間)。 FWIW,您的示例查詢中的列不在您的示例數據中。另外,我猜測「時間」是某種日期的表示形式? –