|
|||||||||||
|
RE: query question
From: Andrey Dmitriev <admitriev(at)mentora.com>
Date: Mon Oct 29 2007 - 23:59:37 EDT
mysql> select service_names.name as 'Service',
-> group_concat (hosts.name)
-> from monarch.hosts as hosts, monarch.services as services,
monarch.service_names as service_names
-> where
-> hosts.host_id=services.host_id
-> and service_names.servicename_id=services.servicename_id
-> group by service_name.name
->
->
-> ;
ERROR 1305 (42000): FUNCTION mysql.group_concat does not exist
-----Original Message-----
Hi,
Andrey Dmitriev wrote:
> | > | > | Yes. Have a look at GROUP_CONCAT(). Baron -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/mysql?unsub=lists@pantek.comReceived on Tue Oct 30 00:00:25 2007 This archive was generated by hypermail 2.1.8 : Thu Jul 03 2008 - 08:43:16 EDT |
||||||||||
|
|||||||||||