This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Is there a Microsoft SQL query which returns the present datetime. Pseudo-code eg. select * from table1 where date > getTime(now) Is there a MS SQL specific equivalent to 'gettime(now)'?
Rick Valdez
Greenhorn
Joined: Jul 24, 2003
Posts: 1
posted
0
There is a getdate() function in T-SQL (Microsoft's SQL syntax used in SQL Server). Just be aware that if you put getdate() in your WHERE clause, you might not get any results as it searches for a datetime stamp. You can use a LEFT(getdate(), 11) in your WHERE clause and will return something like this... Jul 24 2003