I have two tables in my SQL Server database:
Person
ID Lastname  Age
1  Jones     46
2  Smith     37
Employee
ID(FK) Firstname Surname
1      Bob       [empty string]
2      Janet     [empty string]
I want to combine Employee as follows. (I will then be removing the Lastname from person, but let's not worry about that for now.)
Employee 
ID (FK)   Firstname  Surname
1         Bob        Jones
2         Janet      Smith
How can I do that?
 
     
    