Skip to content
Advertisement

Return first element in array_agg()

I am writing a query to get all players for all teams. Instead of looping in the application, I decided to get the players of all teams in a single query using array_agg(). I have written the query as follows:

This query gives me the result as below, in the result set the teamname is being repeated (exactly to the no. of players)

Is there any way to return the result like this

I have achieved it using a subquery, but want to know if its possible to write it without the subquery

The sqfiddle is here. And I am using Postgresql 8.4

[EDIT]
I was actually thinking of hack to the GROUP BY limitation column "team.team_status" must appear in the GROUP BY clause or be used in an aggregate function when try to retrieve the a column which was not been specified in group by

Advertisement

Answer

It was actually a mistake from my part… the answer to my first question lies in that query itself. I just have to enclose the (array_agg(team_name))[1], earlier I tried it without the brackets.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement