I have a similar problem that was previously solved here. However, there is one key difference. I need to keep the relationships to the original data.
For example, Imagine there is a table with information such as this:
user {id, first, last, address}
I'd like to move the address portion out of the 'user' table and into its own 'address' table.
user {id, first, last}
address {id, address}
user_address {user_id, address_id}
so the new 'address' table would contain the data that used to be stored in the 'user' table and the 'user_address' link table would maintain the connection to the original user.