I dont know it is possible or not in MySQl, but I have to import the old database table to new normalized database table. I have 2 table user and user_roles in new one and the previous one only has admin
newdb.users Table user_id | username | password newdb.user_roles Table user_id | role_id
old database table
olddb.admin Table id | username | password | user_type 1 | user1 | *** | admin 3 | user7 | *** | staff
admin role_id is 1 and staff role_id is 2
So the new table after SQL insert should look like.
newdb.users Table user_id | username | password 1 | user1 | *** 3 | user7 | *** newdb.user_roles Table user_id | role_id 1 | 1 3 | 2
How to do this using MYSQL query. Thanks.