I have start time and end time in my application. I now need to check if there is any time falling between those time in SQL Query.
How do I write the query.
Thanks
|
I have start time and end time in my application. I now need to check if there is any time falling between those time in SQL Query. How do I write the query. Thanks |
|||||
|
|
This should work for you.
|
|||||||
|
|
I would recommend to not use between when comparing datetime. The result is often not what you want.
Test data for demo
Query using between
Result: 11:00 is included in the result.
Rewrite the query using
Result
The title of the question hints at that you want to check for overlapping date intervals. If that is the case you can have a look at this question How can I determine in SQL Server if a dateTime range overlaps another. |
|||
|
|
|
This will also work :-
|
|||
|
|