Tagged Questions
The group-concat tag has no wiki summary.
10
votes
4answers
3k views
using group_concat in PHPMYADMIN will show the result as [BLOB - 3B]
I have a query which uses the GROUP_CONCAT of mysql on an integer field.
I am using PHPMYADMIN to develop this query. My problem that instead of showing 1,2 which is the result of the concatenated ...
8
votes
1answer
48 views
How to find all the tags of each page and then concat the tags into one column?
How can I find all the tags of each page and then concat the tags into one column?
For an example,
pages table,
page_id
1
2
3
4
tags table,
tag_id tag_name
1 A
2 B
3 ...
6
votes
2answers
2k views
MySQL: Sort GROUP_CONCAT values
In short: Is there any way to sort the values in a GROUP_CONCAT statement?
Query:
GROUP_CONCAT((SELECT GROUP_CONCAT(parent.name SEPARATOR " » ")
FROM test_competence AS node, ...
5
votes
3answers
3k views
Postgresql GROUP_CONCAT equivalent?
I have a table and I'd like to pull one row per id with field values concatenated... In my table, for example, I have this:
TM67 | 4 | 32556
TM67 | 9 | 98200
TM67 | 72 | 22300
TM99 | 2 | 23009
TM99 ...
5
votes
4answers
5k views
Use LINQ to concatenate multiple rows into single row (CSV property)
I'm looking for the LINQ equivalent to the Sybase's LIST() or MySQL's group_concat()
It'll convert:
User Hobby
--------------
Bob Football
Bob Golf
Bob Tennis
Sue Sleeping
Sue ...
4
votes
1answer
51 views
Condition within GROUP_CONCAT()
Guys I have the following tables in my DB
locations
id (primary key)
name
projects
id (primary key)
location_id (foreign key => locations)
projectname
milestones
id (primary key)
name
...
4
votes
1answer
1k views
How do I concatenate strings from a subquery into a single row in mysql?
I have three tables:
table "package"
-----------------------------------------------------
package_id int(10) primary key, auto-increment
package_name varchar(255)
price ...
4
votes
1answer
1k views
Sqlite group_concat ordering
In Sqlite I can use group_concat to do:
1...A
1...B
1...C
2...A
2...B
2...C
1...C,B,A
2...C,B,A
but the order of the concatenation is random - according to docs.
I need to sort the output of ...
3
votes
1answer
53 views
mysql & group_concat_length
Let say I have a table with million of rows.
Does this sql query stop as soon as "group_concat_length" limit value is reached for all "id_list" or does it test all rows in the table?
SELECT ...
3
votes
1answer
106 views
How to concatenate data from one field, in a comma-delimited list, in a many-to-many relationship in MySQL?
I have a many-to-many relationship between People and Departments since one person can be in many departments.
People Departments
------ -----------
pID pName deptID ...
3
votes
2answers
85 views
Group by X or Y?
I'm trying to figure out how to GROUP BY on multiple columns. I want to group items when the SSN or the address matches. For example, here are three records:
account_number | name | ssn ...
3
votes
1answer
157 views
GROUP_CONCAT with additional grouping?
I have started on a script to generate statistics of how often and when a particular article is called using
SELECT `title`, `page_id`, COUNT(*) AS `total`,
GROUP_CONCAT(DISTINCT `date_created`
...
3
votes
3answers
230 views
mysql group by using the range record value
Urgent.. Need help please!
I am on very close deadline project..
I am not newbie in SQL but i have the challenge problem (at least for me)
I have table t_test below :
emp_code | period_month | ...
3
votes
2answers
644 views
Using php to return GROUP_CONCAT('column x') values
I am trying to use PHP to return SQL values into an HTML table. I am able to get every column to populate without a problem except for the last column, "GROUP _ CONCAT (provision_id)."
Relevant ...
2
votes
1answer
50 views
MySQL Left Outer Join and Combining Results
I'm struggling with a join. Basically I want the tags results from my query to be in a single row.
Below are my tables:
cover
category
cover_tag
tag
The query returns the cover, category, and all ...
2
votes
1answer
33 views
filtering results of group_concat, inner join query
Newbie here. The code below is doing a great job returning the results I want. The only problem is that I can't figure out how to return only a certain date range (found in checkdate column). The ...
2
votes
1answer
19 views
MySQL: Optionally Build Group Concat field
I have a set of articles. Some of these articles have been assigned x number of tags.
I want to select all articles in the format specified in the SELECT, and if the article also has any number of ...
2
votes
1answer
49 views
Sql Query To count “different way of stored data”
Here is my Tables data
Tickets
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ id | tic_files |
...
2
votes
2answers
86 views
SELECT with GROUP_CONCAT, GROUP BY, HAVING
I Have table with odd_id and i want to select combinations for different ticket_id's. Here's my query:
SELECT
ticket_id,
GROUP_CONCAT(odd_id) as oddsconcat
FROM ticket_odds
GROUP BY ticket_id
And ...
2
votes
2answers
73 views
group_concat many times?
I'm trying to make a MySQL query that uses different group_concat with data from the same LEFT JOIN. An example tables could be:
Cars table
carid | license_plate
Tires table (means used tires)
carid ...
2
votes
3answers
389 views
GROUP_CONCAT change GROUP BY order
I have a VIEW (lots of joins) that outputs data ordered by a date ASC. Works as expected.
OUTPUT similar to:
ID date tag1 other_data
1 25-03-2011 blue fff <=
1 26-03-2011 ...
2
votes
1answer
562 views
mysql join with multiple values in one column
I need to make a query that creates 3 columns that come from 2 tables which have the following relations:
TABLE 1 has Column ID that relates to TABLE 2 with column ID2
In TABLE 1 there is a column ...
2
votes
1answer
470 views
mysql GROUP_CONCAT duplicates
I make my join from a farmTOanimal table like this. There is a similar farmTotool table
id | FarmID | animal
1 | 1 | cat
2 | 1 | dog
When I join my tables in a view, I get a result that looks like ...
2
votes
2answers
151 views
Problem with explode() in PHP
I'm having a problem with my explode function in PHP.
I'm pulling a string from the database as follows:
column_name
0,2000,0,3000,1000,7000,1000,0,0,0
After pulling this into an object called ...
2
votes
2answers
993 views
Join one row to multiple rows in another table
I have a table to entities (lets call them people) and properties (one person can have an arbitrary number of properties). Ex:
People
Name Age
--------
Jane 27
Joe 36
Jim 16
Properties
Name ...
2
votes
2answers
167 views
Sql Select Query Question. Merge Rows
I have a single MYSQL Question and need help ASAP.
Database:
-------------------------------------------------------------------
Email | Name | Tag
...
2
votes
2answers
486 views
How to use sum() within a group_concat()?
Question revised
Really wanted a group_concat of sums...
Table: shops
+---------+--------+--------+
| shop_id | name | state |
+---------+--------+--------+
| 0 | shop 0 | 5 |
| 1 ...
2
votes
2answers
1k views
Ordering in a MySQL GROUP_CONCAT with a function in it
I want to order the results in a GROUP_CONCAT function. The problem is, that the selection in the GROUP_CONCAT-function is another function, like this (fantasy select):
SELECT a.name,
...
2
votes
1answer
408 views
MySQL performance: Single query using GROUP_CONCAT, or two separate queries?
I have a MySQL database in which each user has an account, and each account can have multiple permissions.
My ultimate goal is to end up with the account's username, and a comma-delimited list of ...
2
votes
2answers
783 views
MySQL - How to use subquery into IN statement by value
The question is to get table column data and use it as a value list for IN function;
For this example I created 2 tables: movies and genres
Table "movies" contains 3 columns: id, name and genre.
...
2
votes
5answers
989 views
Using MS SQL Server 2005, how can I consolidate detail records into a single comma separated list
BACKGROUND:I am running MS2005. I have a MASTER table (ID, MDESC) and a DETAIL table (MID, DID, DDESC) with data as follows
1 MASTER_1
2 MASTER_2
1 L1 DETAIL_M1_L1
1 L2 DETAIL_M1_L2
1 L3 ...
2
votes
5answers
7k views
Using GROUP_CONCAT on subquery in MySQL
I have a MySQL query in which I want to include a list of ID's from another table. On the website, people are able to add certain items, and people can then add those items to their favourites. I ...
1
vote
0answers
10 views
Concat attributes
id key value
----- -------- -----------
1 first_name Muhammad
2 last_name Muzaffar
3 color Red
how i can get ...
1
vote
1answer
38 views
GROUP_CONCAT in SELECT statement
I have a small problem with an SQL statement with a GROUP_CONCAT.
I have this statement:
SELECT ni.*, GROUP_CONCAT(newsletter_item_receivers.value) AS receivers, nf.*, ...
1
vote
1answer
33 views
Getting tags for content from second table in one sql
I have two tables, one for posts, one for tags related to posts, where posts.tags holds the ids of the tags related to the post.
posts:
id | title | tags
-----------------
1 | Foobar | 1 3 7
2 | ...
1
vote
2answers
66 views
GROUP BY and GROUP_CONCAT - how to return correct values?
I have the following query:
SELECT ev.q1, ev.comments, es.session_number, es.title, CONCAT( np.first_name, ' ', np.last_name ) AS speaker
FROM `expo_session_eval` ev
LEFT JOIN expo_session es ON ...
1
vote
3answers
92 views
How display multiple rows in a table with one row in another table as single row
I have two tables.
Table "user" contains user_id, user_name
Table "Transactions" contains user_id, transactions
Eg:
TABLE USER:
user_id, user_name
1, Ram
2, John
3, Rahim
TABLE Transactions
...
1
vote
4answers
54 views
mysql distinct group_concat values
I have a bunch of user accounts that I need to create associations with based on DOB postcode etc.
I have the following query:
SELECT DISTINCT CONCAT_WS(' , ' ,a.user_id , GROUP_CONCAT( b.user_id ...
1
vote
1answer
167 views
GROUP_CONCAT comma separator - MySQL
I have a query where I am using GROUP_CONCAT and a custom separator as my results may contain commas: '----'
This all works well, however it is still comma separated, so my output is:
Result ...
1
vote
2answers
170 views
Multiple GROUP_CONCAT on different fields using MySQL
I have a query like this:
SELECT product.id,
GROUP_CONCAT(image.id) AS images_id,
GROUP_CONCAT(image.title) AS images_title,
GROUP_CONCAT(facet.id) AS facets_id
...
GROUP BY ...
1
vote
1answer
211 views
mysql concat sub query results as a subquery itself
this is a bit tough, i guess.
what i'm trying to achieve is to generate a string via group_concat and then run it as a query. my query return the
numCustomers as a query i would like to run.
is it ...
1
vote
1answer
135 views
MySQL: GROUP_CONCAT with an ORDER BY COUNT?
Is this possible ?
Let's say I have a list of addresses, with a lot of duplicate entries. I need to filter out all the duplicates, because some addresses have slightly different names but the same ...
1
vote
1answer
171 views
JPA Criteria API group_concat usage
I am currently working on a report which needs a group_concat for one of the fields.
CriteriaQuery<GameDetailsDto> criteriaQuery = criteriaBuilder
...
1
vote
1answer
56 views
Help with complex group by MySQL statemet
I have a table with the following columns:
boxid - nouns - username
1 - w1,w2,w3 - user1
1 - w3,w2,w4 - user2
1 - w1,w8,w5 - user1
2 - w7,w2,w5 - user2
and at the present I have a query that ...
1
vote
1answer
58 views
Ordering a GROUP_CONCAT Column (MySQL)
I was wondering if there was a way to order a GROUP_CONCAT-ed column by another column. Here's my example:
Tables
users
id | name
----+------------
0 | John Smith
users_majors
user_id | ...
1
vote
1answer
168 views
Using GROUP_CONCAT (MySQl) and WM_CONCAT (Oracle) in Propel
Is there a function in Propel ORM which allows me to use something like a GROUP_CONCAT (or WM_CONCAT) aggregation on both Oracle10g and MySQL databases?
Well, I know that I can write my own switch, ...
1
vote
0answers
116 views
Multiple text fields in a single query using group_concat
I'm new to MySQL, and am using it to manage a database of books. Each book has, in addition to its standard data and description, some miscellaneous text fields, which may depend on the book. For ...
1
vote
1answer
64 views
Why does the group_concat bring all the product ids for every row
here is my query which has a few joins and all works well except the GROUP_CONCAT(p.product_id) and the SUM(p.price) portion.
SELECT ts.name as main_name, tp.class_id, ts.step_number, ...
1
vote
3answers
371 views
Concatenate column values for rows with the same values (of different columns)
SQL Server 2005
I have a table which returns
ID name prop value
--------------------------
1 one Prop1 a
1 one Prop1 b
1 one Prop2 c
2 two Prop1 d
2 two ...
1
vote
2answers
147 views
Removing duplicates and sort results emulating group_concat
I've already found this interesting thread
Simulating group_concat MySQL function in MS SQL Server 2005?
use test
go
create table methods (
id int identity,
id_exam int,
method int
)
go
insert into ...