これでグループ化できます:
cast(floor(cast(AutoShipItems.NextOrderDate as float)) as datetime)
簡単にするために、これをスカラー ユーザー定義関数に入れました。
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
次に、次のように呼び出します:
GROUP BY
AutoShipItems.CustomerID,
dbo.xfn_TrimTimeFromDateTime(AutoShipItems.NextOrderDate),
Customer.FirstName, Customer.LastName, Customer.EmailAddress
現在別のものでグループ化しているため、SELECT 句の値を変更する必要がある場合があることに注意してください。