Search Results

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

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 …