I need to add a column of values to one table (TableA) in the right order. The new column on TableA is 1ColX and is empty. Another table (TableB) has the values for 1ColX in 2Colx, and both tables have a column called CustKey. Each record inserted into 1ColX should then have the same CustKey as when it did in TableB. How is this insert done? Thanks.
Also, in this query:
INSERT INTO Northwind.dbo.Shippers (CompanyName, Phone)
VALUES (N'Snowflake Shipping', N'(503)555-7233')
What does the N' mean???
Thank you lots
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran
Also, in this query:
INSERT INTO Northwind.dbo.Shippers (CompanyName, Phone)
VALUES (N'Snowflake Shipping', N'(503)555-7233')
What does the N' mean???
Thank you lots
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran