Quick question. I'm trying to transfer entire columns from one database table to another. I know this is as simple as
INSERT INTO software(Name, Type)
SELECT (Name, Type)
FROM serials (ProductName, Type)
The Product Name column has a mix of both English and Asian characters. So far Insert queries have been replacing the Asian characters with Squares. I know you can specify the Variable type using N@VariableToInsert. Is there any such function for doing the same with entire columns?
My column type is Nvarchar.
Thanks in Advance