I have a table like this -this is a part of users table which is getting update with more rows when a user is registering :
user_id languages
1 english, french
2 english,german,french
3 german
4 english, spanish
and in order to do a littel search I'm intrested of transforming this table into:
user_id language
1 english
1 french
2 english
2 german
2 french
3 german
4 english
4 spanish
Comment : not creating a new table but just right the correct select query from users table to do that. I'm using mysql with phpmyadmin. Any help will be welcome. Thank's.