0
votes
Fastest way to check date range…
I think this T-SQL is equivalent to the code you have:
-- set time portion of @DateStart back to midnight
SET @DateStart = CONVERT(DATETIME,CONVERT(VARCHAR(10),@DateStart,20),20) …
3
votes
How do I use T-SQL’s Exists keyword?
To answer your question about using the EXISTS keyword, here is an example query that uses an EXISTS predicate, based on the query as currently given in your question.
…
3
votes
Is there a better way to convert SQL datetime from hh:mm:ss to hhmmss?
NOTE:
UPDATED: My original answer used format style 20, ODBC canonical format for datetime. I've updated the answer to use the (more appropriate 8 (or 108) format style, w …
9
votes
Parameterizing a SQL IN clause?
The original question was "How do I paramaterize a query ..."
Let me state right here, that this is not an answer to the original question. There are alre …
6
votes
Saving Dates in SQLServer
Format YYYY-MM-DD is unambiguous, meaning that SQL Server won't confuse the month
and day when converting a string value to DATETIME. (I've never experienced a problem w …
9
votes
Simplifying (aliasing) T-SQL CASE statements. Any improvement possible?
Q: how to get an alias to use in the GROUP BY clause
One approach is to use an inline view. [EDIT] The answer from Remus Rusanu (+1!) gives an example of a Common Table Ex …
