how can i change the select...
Student
id name  home  tel
1  A     Neo   023** 
2  A     Cit   012**
3  B     Dti   12**
4  ..    ...   ...
I have a select sql query like:
SELECT
    name,
    home,
    tel
FROM Student
WHERE id<4;
And the result was like↓
name home tel
A    Neo  023** 
 
A    Cit  012**
B    Dti  12**
But I want to get the result like
name home    tel
A    Neo,Cit 023**,012**
B    Dti     12**  
 
     
     
    