I am using SQL Server 2012.
I want to update a row in my table so that it equals the values of another row in the same table apart from the primary key field, see example below. What is the best way to do this?
Primary Key Field One Field Two Field Three
ABS 5 6 2
NJK 3 2 3
So the update query should return a result that looks like,
Primary Key Field One Field Two Field Three
ABS 5 6 2
NJK 5 6 2