i have two columns in table datetime of our timezone with, taking into account daylight saving time, c flag of summer time. i have the order by to all days (order by datetime), and order by for changing time from summer to winter (order by flag desc, datetime). as result i want see the selection order by datetime but in day of changing time order by flag desc, datetime. can i do that one query without stored procedure, cursors, view?
|
the select * from a gives me something like this:
i want to see something like this:
|
||||
|
I interpret your example as follows: Sort by DATE (not time) ascending.
Where DATEPART(dy, X), is a tsql for date without the year. If i'm wrong, or you wish to make it universal, you can just do CONCAT on MONTH and DAY among other things. You left some room for interpretation under the 'Most days' case (since in your example all datetimes with the flag are strictly greater than all of those without). but you can change that however you need (TIME functions make no functional difference since we know dates are equal whenever this comparison matters. i put them for clarity) |
||||
|
|
Basically, you need to standardize the time; the ORDER BY clause below removes the hour associated with daylight savings time. If your dst colum is actually a bit, you may need to convert it to a tinyint (either in your design or inline in the ORDER BY clause to make this work. USE tempdb
|
|||
|
|