Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQl Question-- DateTime

Status
Not open for further replies.

lalitha1

Programmer
Oct 14, 2008
57
US
Can someone help me with this.
is it possible to display just the date part from a Datetime column in sqlserver 2000.
Want Output as ‘10/15/2008’ not ‘2008-10-15 00:00:00.000’

Thanks!
 
Try this in a query window:

Code:
SELECT CONVERT(VARCHAR, GETDATE(), 101)
 
But if in a table if there are more than one DateTime columns how do I know which column am I refering to.
For example, in Employeetable there are two columns
startdate and Enddate. I would like to get the date part of just the Startdate.
 
The code I posted above is an example. Replace the word "GETDATE()" with the name of your column(s). You can use this code multiple times within the same SQL statement.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top