I'm trying to take data from varchar fields in one table and copy it to Nvarchar fields in another table. (Long story - now dealing with multiple languages, not enough space in row in current table for multiple Nvarchar fields...).
I know how to insert new text into the Nvarchar fields:
Expand|Select|Wrap|Line Numbers
- INSERT INTO tblNotes ( noteID, note )
- SELECT 1, N'This is a unicode note'
Expand|Select|Wrap|Line Numbers
- INSERT INTO tblNotes ( noteID, note )
- SELECT tblEvents.eventID, tblEvents.eventTitle
- FROM tblEvents;
Thanks for any insight.
Cathy