What I need to do is take this query and this result: SELECT segfees FROM fsf;
+---------+ | segfees | +---------+ | FS=5.00 | | AY=2.50 | | XF=1.75 | | ZP=3.20 | +---------+ I make it just return ONE row like this: +---------------------------------+ | segfees | +---------------------------------+ | FS=5.00,AY=2.50,XF=1.75,ZP=3.20 | +---------------------------------+ Any idea how to write a query to return this type of result? (I plan on using it as a subquery, that's why I only want one result) -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
