Hi,
I have the Code below
Select a.myeeid, a.coid, a.location, b.cmpcompanyname, c.locdesc, d.ejheeid
from dbo.SecQualList a, dbo.company b, dbo.location c, emphjob d
Where
a.coid = b.cmpcoid and
a.location = c.loccode and
a.myeeid = d.ejheeid and
a.myeeid = '60K4W00000K0'
The issue is a.coid column and c.loccode column have multiple values separated by commas. Is there any ways to do this join with multiple values separated by commas? Any help or guidance will be greatly appreciated.
Thanks
Sony