Hi,
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:
but the problem I'm having is when I'm pulling the text to insert from another table:
How do I indicate that the "eventTitle " field should be inserted as Unicode? I can't add a preceding 'N' to it as I would if directly inserting data.
Thanks for any insight.
Cathy
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:
Code:
INSERT INTO tblNotes ( noteID, note ) SELECT 1, N'This is a unicode note'
Code:
INSERT INTO tblNotes ( noteID, note ) SELECT tblEvents.eventID, tblEvents.eventTitle FROM tblEvents;
Thanks for any insight.
Cathy
Comment