williadn48
Programmer
I am trying to update a field with itself plus another field in SQL Query Analyzer.
Update ECMTTConversion
set EntryDate = EntryDate + '' + Starttime
go
EntryDate has only a date in it. StartTime has only a time in it. I need to concatenate them into one field.
I keep getting:
String or binary data would be truncated.
The statement has been terminated.
Update ECMTTConversion
set EntryDate = EntryDate + '' + Starttime
go
EntryDate has only a date in it. StartTime has only a time in it. I need to concatenate them into one field.
I keep getting:
String or binary data would be truncated.
The statement has been terminated.