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
If you use Oracle you can create a PL/SQL function you can use in your query that accepts an organization_id as input, and returns the first name of all employees belonging to that org as a string. For example:-
select
o.org_id,
o.org_address,
o.org_otherdetails,
org_employees( o.org_id ) as org_employees
from
organization o
The short answer is "no".
As noted in other answers, there are vendor-specific ways to achieve this result, but there is no pure SQL solution which works in one query.
sorry about that :(
Presumably one of the vendor specific solutions will work for you?