glthornton
Programmer
Hi,
Is it possible to combine 2 separate date and time fields and then convert them to a single date/time format within a SELECT statement? Let me give you an example, I have one field called Appointment Date (apptDT) and then I have another field called Appointment Time (apptTM). This is what the field values would contain:
But what I would like for a result is:
Is there a way I could perform this conversion within a SELECT statement?
Kind regards,
Glenn
Is it possible to combine 2 separate date and time fields and then convert them to a single date/time format within a SELECT statement? Let me give you an example, I have one field called Appointment Date (apptDT) and then I have another field called Appointment Time (apptTM). This is what the field values would contain:
Code:
apptDT = '02/29/2008'
apptTM = '2:00 PM'
But what I would like for a result is:
Code:
2008-02-29 14:00:00.000
Is there a way I could perform this conversion within a SELECT statement?
Kind regards,
Glenn