Re: [sqlalchemy] String aggregation

2013-11-27 Thread Joseph Casale
Much appreciated Michael. Thanks, jlc On Tue, Nov 26, 2013 at 9:31 PM, Michael Bayer mike...@zzzcomputing.comwrote: you can send any number of arguments to func.XYZ(), they will be comma separated, so you can say: func.group_concat(TableA.name, literal_column(“‘|'”)) On Nov 25, 2013, at

Re: [sqlalchemy] String aggregation

2013-11-26 Thread Michael Bayer
you can send any number of arguments to func.XYZ(), they will be comma separated, so you can say: func.group_concat(TableA.name, literal_column(“‘|'”)) On Nov 25, 2013, at 2:16 PM, Joseph Casale jcas...@gmail.com wrote: While not utilizing newer methods, this produced the desired effect: