我知道 MySQL 有 limit 命令,但我不知道我应该在 SQL Server 2008 中使用什么命令?
我需要选择 clientId 和每次取件的最后一天,大多数客户都有多个取件(取件表中有 65 000 + 条记录)。
select P.ClientID,LastName+' '+FirsName as Name , Adress,p.PickupDate
from Pickup P,Clients C
where P.ClientID= C.ClientID
order by PickupDate desc limit 1
throwing error *Msg 102, Level 15, State 1, Line 4
Incorrect syntax near 'limit'.*
because **LIMIT** is not key word in SQL server