trouble formatting date on transfer to temp table

BennyLinton

Registered User.
Local time
Today, 15:25
Joined
Feb 21, 2014
Messages
263
I am trying to export into a temp table (all text fields because it will be going into a text export later) and I'm having difficulty adding 0:00:00 onto the value of "ApptdateLast" for the update... any ideas? Thanks! Benny

INSERT INTO cbt_Export_Temp ( TransactionType, ID, ApptdateLast )
SELECT "Add" AS TransactionType, "BC" & [TransId] AS ID, dbo_Info.ApptdateLast & " 0:00:00" AS ApptdateLast
FROM dbo_examInfo
 
BennyLinton, what happens when you try to append 0:00:00?
 
What is "I'm having difficulty"? Your butt itches? :D We cannot guess. What is the problem? Say what the system said/did.
 

Users who are viewing this thread

Back
Top Bottom