How to convert CHAR values into DATETIME values in SQL Server (69133)



The information in this article applies to:

  • Microsoft SQL Server 4.2x
  • Microsoft SQL Server 6.0
  • Microsoft SQL Server 6.5
  • Microsoft SQL Server 7.0
  • Microsoft SQL Server 2000 (all editions)
  • Microsoft SQL Server 2005 Standard Edition
  • Microsoft SQL Server 2005 Express Edition
  • Microsoft SQL Server 2005 Developer Edition
  • Microsoft SQL Server 2005 Enterprise Edition
  • Microsoft SQL Server 2005 Workgroup

This article was previously published under Q69133

SUMMARY

The following information discusses how to convert CHAR values into DATETIME values so that a SMALLINT value can be subtracted and a START_TIME value can be obtained.

MORE INFORMATION

To begin with, the character date and time must be converted into the SQL Server datetime format. Then the SMALLINT value can be subtracted to obtain START_TIME. Both tasks can be performed in a single SQL expression; however, it is easier to understand the process if both tasks are considered separately.

For example, if the time value is stored in a column named "term_time" with a format of HHMMSS, and the date value is stored in a column named "term_date" with a format of YYMMDD, these values can be converted to the SQL Server datetime with the following call:
   convert(datetime,term_date+" "+
          substring(term_time,1,2)+":"+
          substring(term_time,3,2)+":"+
          substring(term_time,5,2)   )
				

Given a date in SQL Server datetime format, it is easy to add or subtract a given amount of seconds, minutes, days, and so forth. For example, assuming the SMALLINT value ("@delta") is in seconds, the following function will return the start date/time:
   dateadd(ss,-(@delta),???)
				

The entire expression can be put into the following select statement so it is executed for each row in the input table. "@delta" is assumed to be an input parameter. If "@delta" is in units other than seconds, the first parameter of dateadd must be changed to reflect the correct units (minutes, days, and so forth).
   select  dateadd( ss, -(@delta), convert(datetime,term_date+" "+
               substring(term_time,1,2)+":"+
               substring(term_time,3,2)+":"+
               substring(term_time,5,2)   ))
     from t1
				

Modification Type:MajorLast Reviewed:12/1/2005
Keywords:kbProgramming KB69133 kbAudITPRO kbAudDeveloper