Re: [Sqlalchemy-users] Calling functions

2006-10-16 Thread Eric Brunson
Awesome, I'll give it a try. Thanks a lot, e. Michael Bayer wrote: > maybe something like > > select( [ func.group_concat( somecolumn.op('separator')(':') ) ] ) > > the "op" function is used for arbitrary binary operators. > > On Oct 16, 2006, at 1:41 PM, Eric Brunson wrote: > >> >> It's unclea

Re: [Sqlalchemy-users] Calling functions

2006-10-16 Thread Michael Bayer
maybe something like select( [ func.group_concat( somecolumn.op('separator')(':') ) ] ) the "op" function is used for arbitrary binary operators. On Oct 16, 2006, at 1:41 PM, Eric Brunson wrote: > > It's unclear to me if sqlalchemy can handle some of the odd functional > call conventions in my

[Sqlalchemy-users] Calling functions

2006-10-16 Thread Eric Brunson
It's unclear to me if sqlalchemy can handle some of the odd functional call conventions in mysql. In specific, I'd like to use the "SEPARATOR" director to the group_concat() function. I can use as.select( [ sa.func.group_concat( somecol ), groubycolumn ] ), but in pure SQL I would do: sele