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.
The moose likes JDBC and the fly likes Microsoft SQL - get time Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Microsoft SQL - get time" Watch "Microsoft SQL - get time" New topic
Author

Microsoft SQL - get time

Nicolas Tolksdorf
Greenhorn

Joined: Nov 07, 2001
Posts: 5
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
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
Nicolas Tolksdorf
Greenhorn

Joined: Nov 07, 2001
Posts: 5
Cheers for you help.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Microsoft SQL - get time
 
Similar Threads
Where is Yukon
how do i do this urgent
Sql optimizer
The specified SQL type is not supported by this driver.
count number of coulmns in table?