私の目的は、RoomId、ChatDate、およびChatTimeでテーブルからチャットを選択し、結果を日付と時刻で並べることです
ChatDate と ChatTime で結果を並べ替えるには、このクエリに何を追加すればよいでしょうか?!
それは私が今まで書いたものです:
ALTER PROCEDURE [dbo].[Get_ChatByHour]
@BeginHour Time(7),
@EnDHour Time(7), @RoomId int,@ChatDate date
AS
BEGIN
SET NOCOUNT ON;
-- Insert statements for procedure here
SELECT *
FROM Chat
WHERE Chat.RoomId=@RoomId
and Chat.ChatDate=@ChatDate
and Chat.ChatTime BETWEEN @BeginHour and @EnDHour
END