sqlite-database-integration icon indicating copy to clipboard operation
sqlite-database-integration copied to clipboard

Support GROUP_CONCAT

Open tbradsha opened this issue 1 year ago • 1 comments

The common basic usage is fairly simple to translate:

  • MySQL (docs): GROUP_CONCAT( field_name SEPARATOR 'some_separator' )
  • SQLite (docs): GROUP_CONCAT( field_name, 'some_separator' )

Technically the MySQL implementation is has more options, but I suspect the above covers the majority of uses.

tbradsha avatar Jan 05 '24 18:01 tbradsha