Rank: Member Groups: Member
Joined: 2/16/2008 Posts: 29 Points: 87 Location: Seattle, Washington
|
I have two fields: Table1.SSN, and Table1.Last4. I need a query that inserts the last 4 of Table1.SSN into Table1.Last4. The value of Table1.SSN should not be affected. Thanks in advance.
|
Rank: Member Groups: Member
Joined: 2/16/2008 Posts: 21 Points: 63 Location: Salt Lake City, UT
|
update table1 set last4=right(ssn,4)
|