On 2011-9-15 18:58, RVince wrote:
Suppose I wish to do something like:
Session.query(Files.original_name, MSPResponse.*
because MSPResponse table has so many fields, and I want to get them
all. How do I do this given that I am also picking field(s) from other
tables ? Thanks RVince


You can use the power of python:

Session.query(Files.original_name,
              *[c.name for c in MSPResponse.__table__.c])

Wichert.

--
Wichert Akkerman <wich...@wiggy.net>   It is simple to make things.
http://www.wiggy.net/                  It is hard to make things simple.

--
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to