2
Answers

How to join the below table and getting the below output res

Adhikar Patil

Adhikar Patil

6y
553
1
Hello
I Have one table- CourseMaster that contains two columns
CourseId CourseName
 1               Asp.Net
 2               C#
 3              SQL
 4               VB
And Now i am having one table OrganisationMaster contains two Columns
  OrgId        Name                 CourseOffered
  1               Mauli                         1,4
  2               SVS                           3,4
  3               Prompt                      2,1
So i need query results as below
Name                            CourseOffered
Mauli                            Asp.Net, VB
SVS                               SQL, VB
Prompt                           C#, Asp.Net
So How to write query to get the above result?
Answers (2)