I have two tables Organisation and Employee having one to many relation i.e one organisation can have multiple employees. Now I want to select all information of a particula
in MS SQL you can do:
create function dbo.table2list (@input int)
returns varchar(8000)
as
BEGIN
declare @putout varchar(8000)
set @putout = ''
select @putout = @putout + ', ' +
from
where = @input
return @putout
end
then do:
select * from org, dbo.table2list(orgid)
from
I think you can do it with COALESCE() as well, but can't remember the syntax off the top of my head