<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: GROUP_CONCAT useful GROUP BY extension</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:23:57 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: liki05</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-675540</link>
		<dc:creator>liki05</dc:creator>
		<pubDate>Wed, 11 Nov 2009 07:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-675540</guid>
		<description>hi PixelMe.

you can use substring_index(group_concat(column),&#039;,&#039;,2). it will return the first 2 concated values.</description>
		<content:encoded><![CDATA[<p>hi PixelMe.</p>
<p>you can use substring_index(group_concat(column),&#8217;,',2). it will return the first 2 concated values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Función GROUP_CONCAT de MySQL &#124; Otro Blog Más</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-666620</link>
		<dc:creator>Función GROUP_CONCAT de MySQL &#124; Otro Blog Más</dc:creator>
		<pubDate>Mon, 19 Oct 2009 20:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-666620</guid>
		<description>[...] &#8211; Syntax Error y MySQL Performance Blog (mirar también los comentarios) Share this on del.icio.usShare this on [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; Syntax Error y MySQL Performance Blog (mirar también los comentarios) Share this on del.icio.usShare this on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PixelMe</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-560525</link>
		<dc:creator>PixelMe</dc:creator>
		<pubDate>Wed, 13 May 2009 19:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-560525</guid>
		<description>When I am using in GROUP_CONCAT, It will list all the values associated wit the parent ID, But I need only few like limit in ordinary SQL statement. Anybody know how to do this in MySQL qeury?

tblmovies
MovieId     MovieName
1           The Take
2           Fatal Contact
3           Flashbacks of a Fool
4           Teddy Bear
5           Nanking


tblgenres
GenreId     GenreName
1           Action
2           Horror
3           Sci-Fi 
4           Documentary
5           Drama 
6           History 

tblmovie_genres
movieId       GenreId
1             2
1             4
1             5
2             4
4             5
3             5
5             6

When I was selecting the Movie whith Id 1 GROUP_CONCAT will result  Horror,Documentary, Drama ; But I want to get only 2 genres which is Horror,Documentary.

Please somebody help me .

Thanks.</description>
		<content:encoded><![CDATA[<p>When I am using in GROUP_CONCAT, It will list all the values associated wit the parent ID, But I need only few like limit in ordinary SQL statement. Anybody know how to do this in MySQL qeury?</p>
<p>tblmovies<br />
MovieId     MovieName<br />
1           The Take<br />
2           Fatal Contact<br />
3           Flashbacks of a Fool<br />
4           Teddy Bear<br />
5           Nanking</p>
<p>tblgenres<br />
GenreId     GenreName<br />
1           Action<br />
2           Horror<br />
3           Sci-Fi<br />
4           Documentary<br />
5           Drama<br />
6           History </p>
<p>tblmovie_genres<br />
movieId       GenreId<br />
1             2<br />
1             4<br />
1             5<br />
2             4<br />
4             5<br />
3             5<br />
5             6</p>
<p>When I was selecting the Movie whith Id 1 GROUP_CONCAT will result  Horror,Documentary, Drama ; But I want to get only 2 genres which is Horror,Documentary.</p>
<p>Please somebody help me .</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JayaLakshmi</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-560369</link>
		<dc:creator>JayaLakshmi</dc:creator>
		<pubDate>Wed, 13 May 2009 06:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-560369</guid>
		<description>Details

The result is truncated to the maximum length that is given by the group_concat_max_len  system variable, which has a default value of 1024. The value can be set higher, although the effective maximum length of the return value is constrained by the value of max_allowed_packet. The syntax to change the value of group_concat_max_len at runtime is as follows, where val  is an unsigned integer:
 
SET [GLOBAL &#124; SESSION] group_concat_max_len = val;

 
Current values in Our server

max_allowed_packet = 67107840
group_concat_max_len = 1024

Query:

To how much extent ,I can increase this variable size .and what is the maximumm data limit of GROUP_CONCAT</description>
		<content:encoded><![CDATA[<p>Details</p>
<p>The result is truncated to the maximum length that is given by the group_concat_max_len  system variable, which has a default value of 1024. The value can be set higher, although the effective maximum length of the return value is constrained by the value of max_allowed_packet. The syntax to change the value of group_concat_max_len at runtime is as follows, where val  is an unsigned integer:</p>
<p>SET [GLOBAL | SESSION] group_concat_max_len = val;</p>
<p>Current values in Our server</p>
<p>max_allowed_packet = 67107840<br />
group_concat_max_len = 1024</p>
<p>Query:</p>
<p>To how much extent ,I can increase this variable size .and what is the maximumm data limit of GROUP_CONCAT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-559446</link>
		<dc:creator>Barbara</dc:creator>
		<pubDate>Mon, 11 May 2009 21:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-559446</guid>
		<description>I was able to get what I needed by using a sub-query:

SELECT DISTINCT(md.id), (SELECT GROUP_CONCAT(categories.category SEPARATOR &#039;, &#039;) AS category FROM member_categories LEFT JOIN categories ON member_categories.category_id = categories.id WHERE member_categories.member_id = md.id) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id WHERE mc.category_id IN (138) GROUP BY md.name ORDER BY md.isfeatured DESC, RAND(1283945655) LIMIT 0, 10 
====================================================================
id &#124;	category &#124;	
--------------------------------------------------------------------
2275 &#124;	VACATION RENTALS, MASSAGE THERAPY, CONDOMINIUMS &#124;	
1388 &#124;	VACATION RENTALS &#124;	
1839 &#124;	VACATION RENTALS, CONDOMINIUMS &#124;	
1845 &#124;	CONDOMINIUMS, VACATION RENTALS &#124;	
1808 &#124;	REALTORS, VACATION RENTALS &#124;	
1899 &#124;	CONDOMINIUMS, VACATION RENTALS &#124;	
951 &#124;	CONDOMINIUMS, VACATION RENTALS &#124;	
1713 &#124;	VACATION RENTALS, CONDOMINIUMS &#124;	
2240 &#124;	TRAVEL AGENCIES, VACATION RENTALS &#124;	
2285 &#124;	VACATION RENTALS, CONDOMINIUMS &#124;	
====================================================================

However, if anyone has any tips to make this better, please post!  Thanks!</description>
		<content:encoded><![CDATA[<p>I was able to get what I needed by using a sub-query:</p>
<p>SELECT DISTINCT(md.id), (SELECT GROUP_CONCAT(categories.category SEPARATOR &#8216;, &#8216;) AS category FROM member_categories LEFT JOIN categories ON member_categories.category_id = categories.id WHERE member_categories.member_id = md.id) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id WHERE mc.category_id IN (138) GROUP BY md.name ORDER BY md.isfeatured DESC, RAND(1283945655) LIMIT 0, 10<br />
====================================================================<br />
id |	category |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
2275 |	VACATION RENTALS, MASSAGE THERAPY, CONDOMINIUMS |<br />
1388 |	VACATION RENTALS |<br />
1839 |	VACATION RENTALS, CONDOMINIUMS |<br />
1845 |	CONDOMINIUMS, VACATION RENTALS |<br />
1808 |	REALTORS, VACATION RENTALS |<br />
1899 |	CONDOMINIUMS, VACATION RENTALS |<br />
951 |	CONDOMINIUMS, VACATION RENTALS |<br />
1713 |	VACATION RENTALS, CONDOMINIUMS |<br />
2240 |	TRAVEL AGENCIES, VACATION RENTALS |<br />
2285 |	VACATION RENTALS, CONDOMINIUMS |<br />
====================================================================</p>
<p>However, if anyone has any tips to make this better, please post!  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-559365</link>
		<dc:creator>Barbara</dc:creator>
		<pubDate>Mon, 11 May 2009 20:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-559365</guid>
		<description>I have two tables - member_directory &amp; categories - that have a many-to-many relationship.  I am using a bridge table called member_categories.

SELECT DISTINCT(md.id),GROUP_CONCAT(categories.category SEPARATOR &#039;, &#039;) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id GROUP BY md.name ORDER BY md.isfeatured DESC, md.name ASC LIMIT 0, 10
====================================================================
id &#124;	category &#124;	
--------------------------------------------------------------------
951 &#124;	CONDOMINIUMS, VACATION RENTALS &#124;	
1711 &#124;	VACATION RENTALS, REALTORS &#124;	
1413 &#124;	VACATION RENTALS &#124;	
1163 &#124;	BOATING/FISHING/MARINE &#124;	
2034 &#124;	VACATION RENTALS &#124;	
2240 &#124;	TRAVEL AGENCIES, VACATION RENTALS &#124;	
2033 &#124;	APARTMENT/HOUSE RENTALS &#124;	
2208 &#124;	APARTMENT/HOUSE RENTALS &#124;	
2153 &#124;	HEARING AIDS, MEDICAL SERVICES/HOSPITALS/CLINICS, AUDIOLOGY &#124;	
1002 &#124;	CONDOMINIUMS &#124;	
====================================================================

If I add any conditions regarding the category, the GROUP_CONCAT starts returning only the category mentioned in the WHERE clause (I don&#039;t think I explained that very well, but here is an example).  Adding a WHERE clause to the query:
SELECT DISTINCT(md.id), GROUP_CONCAT(categories.category SEPARATOR &#039;, &#039;) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id WHERE mc.category_id = 187 GROUP BY md.id ORDER BY md.id ASC, md.name ASC LIMIT 0, 10

====================================================================
id &#124;	category &#124;	
--------------------------------------------------------------------
1417 &#124;	SHOPPING &#124;	
1736 &#124;	SHOPPING &#124;	
1768 &#124;	SHOPPING &#124;	
2219 &#124;	SHOPPING &#124;	
2403 &#124;	SHOPPING &#124;	
2407 &#124;	SHOPPING &#124;	
2426 &#124;	SHOPPING &#124;	
2431 &#124;	SHOPPING &#124;	
2456 &#124;	SHOPPING &#124;	
2458 &#124;	SHOPPING &#124;	
====================================================================

Is there any way I can get the desired result?  I just need a query to get information from the member_directory and any categories it may belong to.</description>
		<content:encoded><![CDATA[<p>I have two tables &#8211; member_directory &amp; categories &#8211; that have a many-to-many relationship.  I am using a bridge table called member_categories.</p>
<p>SELECT DISTINCT(md.id),GROUP_CONCAT(categories.category SEPARATOR &#8216;, &#8216;) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id GROUP BY md.name ORDER BY md.isfeatured DESC, md.name ASC LIMIT 0, 10<br />
====================================================================<br />
id |	category |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
951 |	CONDOMINIUMS, VACATION RENTALS |<br />
1711 |	VACATION RENTALS, REALTORS |<br />
1413 |	VACATION RENTALS |<br />
1163 |	BOATING/FISHING/MARINE |<br />
2034 |	VACATION RENTALS |<br />
2240 |	TRAVEL AGENCIES, VACATION RENTALS |<br />
2033 |	APARTMENT/HOUSE RENTALS |<br />
2208 |	APARTMENT/HOUSE RENTALS |<br />
2153 |	HEARING AIDS, MEDICAL SERVICES/HOSPITALS/CLINICS, AUDIOLOGY |<br />
1002 |	CONDOMINIUMS |<br />
====================================================================</p>
<p>If I add any conditions regarding the category, the GROUP_CONCAT starts returning only the category mentioned in the WHERE clause (I don&#8217;t think I explained that very well, but here is an example).  Adding a WHERE clause to the query:<br />
SELECT DISTINCT(md.id), GROUP_CONCAT(categories.category SEPARATOR &#8216;, &#8216;) AS category FROM member_directory md LEFT JOIN member_categories mc ON md.id = mc.member_id LEFT JOIN categories ON mc.category_id = categories.id WHERE mc.category_id = 187 GROUP BY md.id ORDER BY md.id ASC, md.name ASC LIMIT 0, 10</p>
<p>====================================================================<br />
id |	category |<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
1417 |	SHOPPING |<br />
1736 |	SHOPPING |<br />
1768 |	SHOPPING |<br />
2219 |	SHOPPING |<br />
2403 |	SHOPPING |<br />
2407 |	SHOPPING |<br />
2426 |	SHOPPING |<br />
2431 |	SHOPPING |<br />
2456 |	SHOPPING |<br />
2458 |	SHOPPING |<br />
====================================================================</p>
<p>Is there any way I can get the desired result?  I just need a query to get information from the member_directory and any categories it may belong to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian 2L</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-555724</link>
		<dc:creator>Florian 2L</dc:creator>
		<pubDate>Mon, 04 May 2009 14:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-555724</guid>
		<description>Mysql support saved my time :)

mysql&gt; SELECT * FROM user where FIND_IN_SET(id, @lid);
+----+----------+
&#124; id &#124; nom      &#124;
+----+----------+
&#124;  4 &#124; julie    &#124; 
&#124;  6 &#124; renaud   &#124; 
&#124;  9 &#124; aurelien &#124; 
+----+----------+
3 rows in set (0.02 sec)</description>
		<content:encoded><![CDATA[<p>Mysql support saved my time <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>mysql&gt; SELECT * FROM user where FIND_IN_SET(id, @lid);<br />
+&#8212;-+&#8212;&#8212;&#8212;-+<br />
| id | nom      |<br />
+&#8212;-+&#8212;&#8212;&#8212;-+<br />
|  4 | julie    |<br />
|  6 | renaud   |<br />
|  9 | aurelien |<br />
+&#8212;-+&#8212;&#8212;&#8212;-+<br />
3 rows in set (0.02 sec)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baron Schwartz</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-551919</link>
		<dc:creator>Baron Schwartz</dc:creator>
		<pubDate>Wed, 29 Apr 2009 12:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-551919</guid>
		<description>Florian, this topic has been addressed hundreds of times on forums and mailing lists :-)  Google is your friend.</description>
		<content:encoded><![CDATA[<p>Florian, this topic has been addressed hundreds of times on forums and mailing lists <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Google is your friend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian 2L</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-551870</link>
		<dc:creator>Florian 2L</dc:creator>
		<pubDate>Wed, 29 Apr 2009 09:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-551870</guid>
		<description>Hello !

I&#039;ve a little problem using group_concat and user variable.
I tried to set a group_concat(id) result into a @var, and then call the same table where id in(@var)
but mysql return only the first row :\ do u have any idea ?


Here is the code :
------------------
CREATE TABLE IF NOT EXISTS `user` (
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `nom` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
INSERT INTO `user` (`id`, `nom`) VALUES (1, &#039;flo&#039;),(2, &#039;seb&#039;),(3, &#039;julien&#039;),(4, &#039;julie&#039;),(5, &#039;aymeric&#039;),(6, &#039;renaud&#039;),(7, &#039;lucy&#039;),(8, &#039;charlotte&#039;),(9, &#039;aurelien&#039;);


mysql&gt; SELECT @lid := CAST(GROUP_CONCAT(id) AS CHAR) FROM `user` WHERE `nom` in(&#039;renaud&#039;, &#039;julie&#039;, &#039;lucy&#039;);
+----------------------------------------+
&#124; @lid := CAST(GROUP_CONCAT(id) AS CHAR) &#124;
+----------------------------------------+
&#124; 4,6,7                                  &#124; 
+----------------------------------------+
1 row in set (0.00 sec)

mysql&gt; SELECT @lid;
+-------+
&#124; @lid  &#124;
+-------+
&#124; 4,6,7 &#124; 
+-------+
1 row in set (0.00 sec)

mysql&gt; SELECT * FROM user WHERE id IN(@lid);
+----+-------+
&#124; id &#124; nom   &#124;
+----+-------+
&#124;  4 &#124; julie &#124; 
+----+-------+
1 row in set (0.00 sec)


I know it is totally useless but it&#039;s just a sample ;)

Regards.</description>
		<content:encoded><![CDATA[<p>Hello !</p>
<p>I&#8217;ve a little problem using group_concat and user variable.<br />
I tried to set a group_concat(id) result into a @var, and then call the same table where id in(@var)<br />
but mysql return only the first row :\ do u have any idea ?</p>
<p>Here is the code :<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
CREATE TABLE IF NOT EXISTS `user` (<br />
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,<br />
  `nom` varchar(255) NOT NULL,<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;<br />
INSERT INTO `user` (`id`, `nom`) VALUES (1, &#8216;flo&#8217;),(2, &#8217;seb&#8217;),(3, &#8216;julien&#8217;),(4, &#8216;julie&#8217;),(5, &#8216;aymeric&#8217;),(6, &#8216;renaud&#8217;),(7, &#8216;lucy&#8217;),(8, &#8216;charlotte&#8217;),(9, &#8216;aurelien&#8217;);</p>
<p>mysql&gt; SELECT @lid := CAST(GROUP_CONCAT(id) AS CHAR) FROM `user` WHERE `nom` in(&#8217;renaud&#8217;, &#8216;julie&#8217;, &#8216;lucy&#8217;);<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| @lid := CAST(GROUP_CONCAT(id) AS CHAR) |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| 4,6,7                                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
1 row in set (0.00 sec)</p>
<p>mysql&gt; SELECT @lid;<br />
+&#8212;&#8212;-+<br />
| @lid  |<br />
+&#8212;&#8212;-+<br />
| 4,6,7 |<br />
+&#8212;&#8212;-+<br />
1 row in set (0.00 sec)</p>
<p>mysql&gt; SELECT * FROM user WHERE id IN(@lid);<br />
+&#8212;-+&#8212;&#8212;-+<br />
| id | nom   |<br />
+&#8212;-+&#8212;&#8212;-+<br />
|  4 | julie |<br />
+&#8212;-+&#8212;&#8212;-+<br />
1 row in set (0.00 sec)</p>
<p>I know it is totally useless but it&#8217;s just a sample <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The coolest mysql function I didn&#8217;t know existed&#8230; &#187; Karl Katzke &#124; PHP, Puppies, and other Geekery</title>
		<link>http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/comment-page-1/#comment-470598</link>
		<dc:creator>The coolest mysql function I didn&#8217;t know existed&#8230; &#187; Karl Katzke &#124; PHP, Puppies, and other Geekery</dc:creator>
		<pubDate>Mon, 09 Feb 2009 17:08:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2006/09/04/group_concat-useful-group-by-extension/#comment-470598</guid>
		<description>[...] group_concat. To use it is to know it, and to know it is to love it. [...]</description>
		<content:encoded><![CDATA[<p>[...] group_concat. To use it is to know it, and to know it is to love it. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
