Let say I have the following tables
Applications
- id
- studentid
- company_id
-status
Company
-company_id
-company_name
Student
-studentid
-studentname
Now let say a student apply 3 companies
So I would like the result to be displayed like this.the result will only be one row.
Id | student name | company 1 | company 2 | company 3
Can I know how to make like the above. I manage to do the multiple row using join statement. But how to do like the one I exactly want.