Can I write a code in SQL that return the current date? If so, how?
Thanks!
WillYou can use the GETDATE() function:
SELECT GETDATE() AS CurrentDateTime
And you can use the CONVERT function to format that datetime value.
Terri|||Convert(varchar(10),GetDate(),101)
returns the date as:
01/01/2004
No comments:
Post a Comment