up vote 0 down vote favorite
share [g+] share [fb]

Is it possible to do SELECT * in sqlalchemy?

Edit: Specifically, SELECT * WHERE foo=1

link|improve this question

71% accept rate
feedback

4 Answers

Is no one feeling the ORM love of SQLALchemy today? The presented answers correctly describe the lower level interface that SQLAlchemy provides. Just for completeness this is the more-likely (for me) real-world situation where you have a session instance and a User class that is orm mapped to the users table.

for user in session.query(User).filter_by(name='jack'):
     print user
     # ...

And this does an explicit select on all columns.

link|improve this answer
"more-likely?" Really? Perhaps for you. But based on this question, perhaps not so likely for others. – S.Lott Mar 11 '09 at 22:38
S.Lott: you are exactly right, I felt uncomfortable writing this. – Ali Afshar Mar 11 '09 at 22:41
S.Lott: updated to reflect that I really was talking about my own experiences. Anyone reading the comments should note that I was mostly referring to the basic setups of things like Webapps with common frameworks like Pylons which can use SQLA. – Ali Afshar Mar 11 '09 at 22:42
@Ali A: Since I'm a Django ORM guy, I almost spewed the Django answer to this. I'm all about ORM. – S.Lott Mar 12 '09 at 0:38
feedback

Turns out you can do:

sa.select('*', ...)
link|improve this answer
feedback

Where Bar is the class mapped to your table and session is your sa session:

bars = session.query(Bar).filter(Bar.foo == 1)
link|improve this answer
feedback

If you don't list any columns, you get all of them.

query = users.select()
query = query.where(users.c.name=='jack')
result = conn.execute(query)
for row in result:
    print row

Should work.

link|improve this answer
What if I want a WHERE clause? – mike Mar 11 '09 at 22:09
Added the where class stuff. You should look at sqlalchemy.org/docs/05/sqlexpression.html#selecting for better advice. – S.Lott Mar 11 '09 at 22:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.