Bạn có thể nhóm theo cái này:
cast(floor(cast(AutoShipItems.NextOrderDate as float)) as datetime)
Tôi đặt nó vào một hàm vô hướng do người dùng xác định để làm cho nó dễ dàng hơn:
create function [dbo].[xfn_TrimTimeFromDateTime]
(
@date as datetime
)
returns datetime with schemabinding as
begin
--- Convert to a float, and get the integer that represents it.
--- And then convert back to datetime.
return cast(floor(cast(@date as float)) as datetime)
end
Sau đó bạn sẽ gọi như thế này:
GROUP BY
AutoShipItems.CustomerID,
dbo.xfn_TrimTimeFromDateTime(AutoShipItems.NextOrderDate),
Customer.FirstName, Customer.LastName, Customer.EmailAddress
Lưu ý rằng bạn có thể phải thay đổi các giá trị trong mệnh đề SELECT, vì hiện tại bạn đang nhóm theo một thứ gì đó khác.