a function which returns a string representation of the concatenated, non-NULL values of a group
Is there an option to make MySQL's Group_Concat function include nulls? Consider the following example from my source table: …
mysql group-concatThis is my table: id | fk_company ------------------- 1 | 2 2 | 2 3 | 2 4 | 4 5 | 4 6 | 11 7 | 11 8 | 11 9 | 12 The result I want should be string "3, 2, 3, 1" (count of items that belong …
mysql sql count group-concatI got this problem with Group_Concat and a where filter. In my table i got module names which are …
mysql sql where group-concat clause(NOTE: This question is not about escaping queries, it's about escaping results) I'm using GROUP_CONCAT to combine multiple rows …
mysql escaping group-concatI have a table of "Songs", "Songs_Tags" (relating songs with tags) and "Songs_Votes" (relating songs with boolean like/…
mysql join group-by group-concatI Have table with odd_id and i want to select combinations for different ticket_id's. Here's my query: SELECT …
mysql select group-by group-concat havingFirst I need to indicate that I ran the sql file for the Wikipedia dump on my machine, and to …
mysql timeout group-concatI seem to come against this problem a lot, where I have data that's formatted like this: +----+----------------------+ | id | …
mysql csv format pivot group-concatI have a query like this: SELECT product.id, GROUP_CONCAT(image.id) AS images_id, GROUP_CONCAT(image.title) …
mysql group-concatI'm new to Presto and looking to get the same functionality as the group_concat function in MySQL. Are the …
mysql presto group-concat trino