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!

Convert varchar(8) to datetime

Status
Not open for further replies.

MJV57

Programmer
Apr 18, 2009
87
CA
Can anyone helpme with converting a varchar(8) column to a datetime value.
I try this but it fails:

CAST( startdate as datetime )
 
First you must be sure that ALL records contains values that can be converted to datetime.
Code:
SELECT * FROM YourTable WHERE ISDATE(YourField) = 0
That will give you all records that can not be converted.
So your query should look like this:
Code:
SELECT CAST(YourField AS datetime) AS DateNameField
       FROM YourTable 
WHERE ISDATE(YourField) = 1


Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top