show values for multiple ids in a column in mysql -


i have table called register, store user's data username,birth-date,language. there offer them add multiple languages. , store languages id in database. have separate table language too.

now want create view fetch data multiple select language.

create table `register` (  `index_id` int(10) unsigned not null auto_increment,  `email` varchar(255) not null,  `password` varchar(300) not null,  `m_status` varchar(200) not null,  `username` varchar(100) not null,  `occupation` int(5) not null,  `m_tongue` varchar(200) character set latin1 collate latin1_bin not null,  primary key (`index_id`) ) engine=myisam auto_increment=621 default charset=latin1 


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -