[sqlalchemy] Re: Can I remove a Column from the select() result set

2007-11-17 Thread Michael Bayer
On Nov 17, 2007, at 12:26 AM, Matt Culbreth wrote: Howdy Group, Let's say I have a very simple query: select person.id, person.name, person.age from person Can I remove one of the columns, say person.age, from this result set and still use the list as a RowProxy? I'm trying to do it

[sqlalchemy] Re: Can I remove a Column from the select() result set

2007-11-17 Thread Matt Culbreth
Thanks Michael. To make a long story short, I'm appending a couple columns onto a query, running it, and then using those two extra columns for some client-side logic (involving calculations to be precise). At the end of that logic, I need to remove those two extra columns. I'd like to be able