select group_concat(concat('\'',col1,'\'')) from table1 where col1='xx' ;

可以得到以逗号链接的值,如: 'a','b','c',等

不过最大长度为1024个字符