I am trying to insert a combination of 2 fields into one field and every time I do this I get an error about truncating data.
The code:
insert into sharppatentdb.Inventor (InventorFull)
select InventorFirst + " " + InventorLast
from sharppatentdb.inventorsource;
The error:
Error Code: 1292. Truncated incorrect DOUBLE value: '
Rossi-Wolter
'
All source fields are VARCHAR(64)
The InventorFull field is VARCHAR(511)
What am I doing wrong?