table format changed
hi all,
i am facing some problems with my database.i have a table with users info, in the same table there is a username and password,initially for each user there would be only one username and pass(account).But now i a have allow multiple accounts for the same person, which means i have to split the table into three:
userstable:
userid fname lname (other info)
accounttable:
usename passwrd (other account info)
usersaccounttable:
userid username
the problem is that the table is already populated with data, and the columns have all the same data type,is there a way to split the data into these three tables without loosing anything?
Thanks.
|