Using SQL server - which is the fastest or best practice method to use for date retrival? Is there a difference?
|
2
|
|
|
|
|
|
CURRENT_TIMESTAMP is standard ANSI SQL, and so is theoretically one tiny little island of 'don't need to change' amongst your thousands of SQL Server-specific lines of SQL if you ever need to move databases.... |
||
|
|
|
|
Either. Portability is destroyed the moment you tune your code anyway... Plain vanilla SQL will be slow on any platform Random comment: MSSQL has GETUTCDATE, ANSI does not |
||
|
|
|
|
My vote is for PS why was it not named |
||
|
|
|
|
CURRENT_TIMESTAMP is part of the ANSI SQL spec. GETDATE() is a SQL Server-specific function inherited from the original Sybase code on which SQL Server is based. They do exactly the same thing, though. |
||
|
|
|
|
Books Online tells us that CURRENT_TIMESTAMP "is equivalent to GETDATE()". |
||
|
|
