Group_Concat() is a function for the RDBMS MySQL, to concat fields in groups and show them as a String
0
votes
1answer
24 views
MySQL group_concat query help needed
I have a MySQL database.I have a table which contains say list of procedures and estimated time suggested by different developers.
As follows:
proc_name user_id est_time
...
0
votes
2answers
18 views
MySQL - Group BY GROUP_CONCAT
I have the following query:
SELECT
issue.`sequence` AS issue_sequence,
issue.`description` AS issue_description,
GROUP_CONCAT(DISTINCT(issue_category.`name`) SEPARATOR ', ') AS ...
0
votes
1answer
23 views
group_concat values greater than specific value
Situation:
there are two tables, Head and Item, where each Head is related to one or more Items. I want to display the sum of each Items quantity per Item, per Month, as well as a list of all ...
0
votes
1answer
18 views
MYSQL GROUP_CONCAT multiple IDs and names (Multiple comment rows on multiple posts rows)
I have 3 MYSQL tables:
Posts
post_id post_name post_date
1 Hello 2013-04-23
2 Goodbye 2013-04-24
Users
user_id user_name
1 Danny
2 ...
1
vote
1answer
26 views
Using SQL Replace to emulate group-concat, but getting the wrong results
I have this table with 2 columns, ParameterID and HDFID.
ParameterID HDFID
7 1
7 2
7 3
32 1
32 3
42 1
42 2
42 3
44 1
44 2
44 3
48 1
48 2
48 3
51 1
51 2
51 3
52 1
52 2
52 3
i ...
0
votes
1answer
12 views
PHP MySQL Hierarchy Data group_concat
any help would be amazing. currently got the following MySQL query:
SELECT
GROUP_CONCAT( sp.`slug` SEPARATOR '/' )
FROM
`category` sn, `category` sp
WHERE
sn.lft BETWEEN sp.`lft` AND ...
0
votes
3answers
54 views
Mysql Group by query is taking long time
I have a table "Words" in mysql database. This table contains 2 fields. word(VARCHAR(256)) and p_id(INTEGER).
Create table statement for the table:
CREATE TABLE `Words` (
`word` varchar(256) ...
0
votes
0answers
23 views
How to get custom ring tone for a group
This is the code I use to get the custom ringtone assigned to a contact.
But if that contact belongs to a group and that group has a custom ringtone, how can I get the custom ringtone of that group?
...
1
vote
1answer
34 views
MySQL GROUP_CONCAT DISTINCT ordering anomaly
I've been reading about this for the past day (even here), and have not found a suitable resource, so I'm popping it out there again :)
Check out these two queries:
SELECT DISTINCT ...
2
votes
1answer
47 views
GROUP_CONCAT but with limits to get more than one row
I am developing a small jumbled-words game for users on a PtokaX DC hub I manage. For this, I'm storing the list of words inside a MySQL table. Table schema is as follows:
CREATE TABLE `jumblewords` ...
0
votes
0answers
57 views
How to use GROUP_CONCAT functionality without GROUP BY in MySQL?
This is the original SQL statement to retrieve course data:
SELECT
`courses`.`id` AS `id`,
`courses`.`title` AS `title`,
`courses`.`description` AS `description`,
MATCH ...
0
votes
1answer
46 views
MYSQL - GROUP_CONCAT show duplicates only
I have 2 SQL tables.
The first table has a mapping of department-ids to student-ids. (A student may belong to more than one department and a department has many students).
The second table has a ...
0
votes
1answer
77 views
UPDATE table row with SELECT and GROUP_CONCAT function in sql
I have 3 tables in my sql database.
This is my tables with a data:
table1
ID WORD
1 a
2 b
3 c
7 o
14 z
32 q
57 i
table2
ID ...
1
vote
3answers
271 views
MySQL GROUP_CONCAT
I heve two Mysql tables
participants
id | name | lastname |
----------------------------
1 | Jon | Bush |
2 | Stephen | Eagle |
and
posts
id | parentid | Title | ...
0
votes
1answer
41 views
how do I concatenate rows in a mysql query
table 1
--------
pid | name
1 someone
2 another
table2
--------
bid | valu
1 drum
2 guitar
3 flower
4 cake
table3
------
id | pid | bid | pref
1 1 3 yes
2 1 ...
0
votes
1answer
42 views
Nested GROUP_CONCAT query doesn't return all values
I have a query with a few subqueries, but the strange thing is that the subqueries won't return the same values as if I execute the queries one by one manually.. At first I used 'IN' inside the ...
0
votes
1answer
40 views
Using NOT IN with GROUP CONCAT in MYSQL
I'am using the "GROUP_CONCAT" function with the "NOT IN" statement in my mysql query. But for unknown reason, it doesn't return the correct values:
Here is my query not working:
select firstname, ...
2
votes
1answer
39 views
mysql group_concat inside while
I have this passenger table date:
Which means that in Reservation 000004, there are two itineraries which are Itinerary 0000010 (AAC Hangar - Anvaya Cove) and 0000011 (Anvaya Cove - AAC Hangar), ...
1
vote
1answer
31 views
mysql: return multiple csv columns from joins
I have this query:
SELECT *
FROM `test` t
LEFT JOIN `result` r ON r.test_id = t.id
LEFT JOIN `parameter` p ON p.test_id = t.id
which returns:
id name id test_id ...
0
votes
2answers
101 views
mysql group_concat, does size limit apply only to returning value?
Without going into details of why, i want to do a join based on the result of a group_concat function. (needless to say, i can't change max length parameter,but plan to capture a hash i can use to ...
0
votes
1answer
48 views
MYSQL GROUP_CONCAT and IN
I have a little query, it goes like this:
It's slightly more complex than it looks, the only issue is using the output of one subquery as the parameter for an IN clause to generate another. It works ...
2
votes
2answers
29 views
Time and Date fields not synchronized with ID field
Data in my tables
item
item_id name
1 ball
2 cap
3 bat
order
order_id date time
1 06/01/2013 15:12
2 12/01/2013 11:10
3 06/01/2013 ...
4
votes
2answers
65 views
Join top 3 interest fields along with each user row
I'm trying to get the top 3 interests of each user, probably as a LEFT JOIN query.
The way the app is designed, each user has a set of interests which are no other than 'childs' (rows without parent) ...
1
vote
1answer
38 views
Get GROUP_BY values as strings
I have this simple table called questions:
id | asker
1 | Bob
2 | Marley
3 | Bob
I want to get a comma-separated list of the asker values. I use the following query:
SELECT GROUP_CONCAT(asker) ...
0
votes
1answer
32 views
Retrive data from table with has Group_concat function
This is Result of two table using GROUP_CONCAT() for columns content_ids and content_titles
and this data is separated with a ',' separator
What i need is?
Using php the values must be stored in a ...
0
votes
1answer
59 views
Reference price and subtract from another during group_concat in MySQL
I'm working on manipulating a product data feed, and am currently working on grouping the related products. I've almost got things where I want them, but, like a mediocre racing driver, I've run out ...
0
votes
0answers
31 views
group_concat uses wrong delimiter
this is a part of my query:
group_concat(distinct(concat_ws(' ', dts.first_name, dts.last_name)) separator ', ') as data_team_specialists
I have following problem: if first_name and last_name exist ...
1
vote
1answer
57 views
MySql query using GROUP_CONCAT and DISTINCT
Here is an example query I am doing. It produces 1,A,1,A,3,B,2,B,4,C,4,C.
SELECT GROUP_CONCAT(CONCAT(ID, ','), Value ORDER BY Value) FROM TableName
Here's a SQL Fiddle Demo.
I want to call ...
0
votes
1answer
29 views
How can I have a query with GROUP_CONCAT return more the one row?
TXNID PARENT_TXN_ID ITEM_NAME
5G161631H9141883L Merchandise Total
4HD251984H4919123 Woodworking 101@Fri 04-05-2013 8:00 pm
...
1
vote
1answer
30 views
Possible to check if a number is IN a GROUP_CONCAT
I want to only get those ids where there are 2 rows and one row has the site_id = 1, the other site_id = 2.
I tried joining the table on twice, but the query took too long. So what I am now doing ...
2
votes
0answers
103 views
Join two rows which have same value in two column in Ado.Net
For this question, Join two rows which have same value in two column thanks to Jim. But I did not use code in below in windows forms application, concating did not come true. Here is MySQL codes:
...
0
votes
1answer
56 views
MYSQL date formating using group concat
Sorry for the repost but this is a question I got most of the answer to a month ago. But still haven't got it completely working the way I want.
Have a date field that I am getting out of my DB with ...
1
vote
2answers
44 views
How to set goup_concat separater in sql to be a column field
I have a table with a column of artist and another of symbol and would like to join them into one cell. When joining I get the following error when I try this
SELECT LOOK_UP_TO_CAT_ID, group_concat( ...
0
votes
1answer
54 views
Select all users that belong to a certain group, complicated query
I am working on a query that for now has worked well (I'm using input from frontend to generate the WHERE clause), but I want to be able to search on another parameter and this truly makes my mind ...
0
votes
1answer
70 views
group_concat sqlite and order by
I am trying to order within group_concat in sqlite3. This is not supported in the way that it is for mysql, so I CAN NOT do this:
group_concat(logID order by logDateTime DESC)
My full query is ...
-1
votes
1answer
49 views
show null records in group_concat [duplicate]
I have two tables like this
profile_answers
+---------+------------+
| id | class_name |
+---------+------------+
| 1 | Class 1 |
| 2 | Class 2 |
| 3 | Class 1 |
...
0
votes
2answers
39 views
Include null results in group_concat
I have two tables like this
profile_answers
+---------+------------+
| id | class_name |
+---------+------------+
| 1 | Class 1 |
| 2 | Class 2 |
| 3 | Class 1 |
...
0
votes
3answers
248 views
select * transform row value as table column name
I am trying to transform row value as column name. After searching on stackoverflow I learned that it can be done by using GROUP_CONCAT(). I tried it but no result.
what I want??
i have a table like ...
1
vote
1answer
185 views
Select results from one table and for each row select all rows that have the same id from another table
UPDATE: Since the first issue was fixed (thank you - I kept the first question at the bottom for you to see), the proper connections are now pulling in fine. The problem is it is only pulling in those ...
0
votes
1answer
96 views
GROUP_CONCAT around CONCAT gives an error - Invalid use of group function
I'm trying to GROUP_CONCAT the results returned by the following query:
SELECT
CONCAT(p.product_name, " (", SUM(bp.quantity), ")") AS products
FROM product p
INNER JOIN booking_products bp ON ...
1
vote
2answers
36 views
MySQL, how can I group on group_concat?
Here is my current query (confidential data replaced and where clauses removed for simplicity):
select a.id, group_concat(v.value) from asset a, values v where a.id=v.id group by a.case_id;
The ...
0
votes
1answer
128 views
MYSQL GROUP_CONCAT CONCAT_WS and handle NULL values
How to handle rows with NULL values especial from here (this is only one place when values can be NULL, because products don't have any attributes):
GROUP_CONCAT(DISTINCT (CONCAT_WS (': ', ...
0
votes
1answer
51 views
would it possible to do this in one mysql query only
Could this be done with one query?
table day:
dID
enable
holiday
fewMore
table segment:
d_ID //foregn key to day->dID
startTime
endTime
fewMore
query:
SELECT dID, enabled,holiday,
...
0
votes
2answers
150 views
In MySQL, how can I concatenate multiple rows and then search on that data?
Struggling a bit with MySQL. I've found the GROUP_CONCAT function which looks right for my needs, but I can't work out how to use it. What I'd like to do is search in several columns as well as the ...
1
vote
2answers
47 views
Need some GROUP_CONCAT MySQL better understanding please
The issue that I'm running into is that there are more then one list_items.item_id(there are two of them). It appears that the group concat is just lumping all of the information together and not ...
1
vote
1answer
56 views
prepend a string to group_concat mysql
This statement...
GROUP_CONCAT(
DISTINCT c_style.clrdesc
ORDER BY c_style.clrdesc DESC
SEPARATOR '|'
) AS Attributes
takes this table...
STYLE CLRDESC
1058 BLACK
1058 BLUE
1058 RED
...
0
votes
3answers
55 views
How to do this query - GROUP_CONCAT
I'd like to do a SELECT on table A which has:
table_a:
╔══════════╦════════╗
║ GROUP_ID ║ NAME ║
╠══════════╬════════╣
║ 1 ║ Tom ║
║ 2 ║ Frank ║
║ 3 ║ Shilla ║
║ 1 ...
2
votes
1answer
229 views
insert data from multiple rows to one row mysql
Ok here's the thing. I need to insert multiple rows in one column from table A to one row in table B using MySql
Here's an example of what im trying to achieve:
Table A
id | data
1 | name
2 | date
...
1
vote
1answer
83 views
Wordpress Custom SQL Query and Group Concat
I am trying to run the below query to get the unique result of object_id. I figured using Group_concat Distinst might work the best. I need to used the results of the query as a variable in the where ...
0
votes
1answer
76 views
MYSQL group_concat with and IF
Have a date field that I am getting out of my DB with the following;
PS Here is more of the query using a join to get the dates from the date table.
SELECT event,event_name,
...




