Bug 166303 - MariaDB direct Connection: SEPARATOR and ORDER BY for GROUP_CONCAT unknown in GUI
Summary: MariaDB direct Connection: SEPARATOR and ORDER BY for GROUP_CONCAT unknown in...
Status: UNCONFIRMED
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Base (show other bugs)
Version:
(earliest affected)
24.8.6.2 release
Hardware: All All
: medium normal
Assignee: Not Assigned
URL:
Whiteboard: QA:needsComment
Keywords:
Depends on:
Blocks:
 
Reported: 2025-04-23 08:40 UTC by Robert Großkopf
Modified: 2025-11-26 07:25 UTC (History)
0 users

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Robert Großkopf 2025-04-23 08:40:46 UTC
Have a look at GROUP_CONCAT:
https://mariadb.com/kb/en/group_concat/

Here a little example:

SELECT GROUP_CONCAT(DISTINCT User ORDER BY User SEPARATOR '\n')
   FROM mysql.user;

This example will work for every table in a MariaDB with direct connection when pressing "Execute directly". It won't work without "Execute directly", because ORDER BY and SEPARATOR seem to be unknown in direct driver of LO.

Note: When creating a form with such query and add a subform to this the GUI will ignore the connection between form and subform, because the query is set in direct SQL. So you couldn't create a form with SEPARATOR and ORDER BY together with GROUP_CONCAT. Only possibility is to create a view from the query. This will work well.