Adhikar Patil

Adhikar Patil

  • NA
  • 481
  • 127.5k

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

Apr 12 2018 8:33 AM
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)