1
我想將最後一個關鍵字的Access查詢轉換爲SQL Server 2005,但無法弄清楚任何幫助。訪問最後一次關鍵字查詢到SQL轉換
在訪問查詢是
SELECT field1, field2, Last(field3) , Last(field4) , Last(DateField)
FROM table
GROUP BY field1, field2
HAVING (((Last(DateField)) Between #9/1/2012# And #9/30/2012#));
我曾嘗試在SQL降序排序的DateField和使用上的DateField但無濟於事MIN關鍵字,也是在SQL我所有的領域都組而不僅僅是Access中的兩個字段。
在此先感謝。
可能的重複http://stackoverflow.com/questions/2281551/tsql-left-join-and-only-last-row-from-right –
可能重複[轉換ms-access last()函數到sql服務器2008](http://stackoverflow.com/questions/12490325/convert-ms-access-last-function-to-sql-server-2008) – Pondlife