G
Guest
I need to concantenate a date with a time in an insert query:
Insert into table1 t (ApptID, ApptTime, ApptTypeID)
(SELECT tApptID, dtDate + tApptTime, tApptType FROM table2)
What is the syntax for this if dtDate is a variable of type date?
Thanks!!
sam
Insert into table1 t (ApptID, ApptTime, ApptTypeID)
(SELECT tApptID, dtDate + tApptTime, tApptType FROM table2)
What is the syntax for this if dtDate is a variable of type date?
Thanks!!
sam