Sql-запрос:если мы передадим любую дату и время в фильтре, запрос должен получить данные для выбранной часовой части для всех выбранных дат.
If we execute the query for 5 days with Start Time 1PM and End Time 5 PM (For eg), Query should fetch data between 1PM to 5 PM for all the 5 days. Likewise, if we pass any Datetime in the filter, the query should fetch data for the selected hour part for all the selected dates. But I am not able to get the expecting result.Please help me to write a query Sample Schema ani nvarchar(100), dnis nvarchar(100), StartTime datetime
Что я уже пробовал:
SELECT id,ani,dnis,starttime,line FROM CCR WHERE CAST(StartTime as time) > CAST('16:45' as time) order by StartTime desc