Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Here is a list of all OQL reserved words:

`REPLACE`, `RIGHT`

`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `SUM`
`SECOND`, `SELECT`, `SET`, `SOURCE`, `STRING`, `STRING_AGG`, `SUM`

`TARGET`, `THEN`, `TRUE`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ GROUP BY
```

{{% alert color="info" %}}
The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `SUM`.
The `GROUP BY` clause is usually used in combination with [aggregations](/refguide/oql-expressions/#aggregates): `AVG`, `COUNT`, `MAX`, `MIN`, `STRING_AGG`, `SUM`.
{{% /alert %}}

### Using `GROUP BY`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ STRING_AGG ( attribute_path, separator )

`separator` is any expression of type `STRING`.

{{% alert color="info" %}}
This aggregate function is only supported in Java actions.
{{% /alert %}}
This aggregate function is supported in View Entities and Datasets starting from Mendix 11.2.0, whereas previously it was only available in Java actions.

### Examples

Expand Down
1 change: 1 addition & 0 deletions content/en/docs/releasenotes/studio-pro/11/11.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ weight: 98
* You can now upload a PDF document in Maia for Workflows. This allows you to generate workflows based on PDF documents in addition to text and image inputs.
* The **Changes** pane is now automatically updated if files on disk are changed outside Studio Pro.
* We added support for saving files using the new Client API by calling `saveFile` from `mx-api/data`. For more information, see the [Client API documentation](/apidocs-mxsdk/apidocs/client-api/).
* We added support for STRING_AGG aggregate function in View Entities and Datasets.

### Improvements

Expand Down