vote up 0 vote down star

Is it possible to do SELECT * in sqlalchemy?

Edit: Specifically, SELECT * WHERE foo=1

flag

65% accept rate

4 Answers

vote up 0 vote down

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|flag
What if I want a WHERE clause? – Mike Mar 11 at 22:09
Added the where class stuff. You should look at sqlalchemy.org/docs/05/… for better advice. – S.Lott Mar 11 at 22:17
vote up 1 vote down

Turns out you can do:

sa.select('*', ...)
link|flag
vote up 4 vote down

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|flag
"more-likely?" Really? Perhaps for you. But based on this question, perhaps not so likely for others. – S.Lott Mar 11 at 22:38
S.Lott: you are exactly right, I felt uncomfortable writing this. – Ali A Mar 11 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 A Mar 11 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 at 0:38
vote up 0 vote down

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

bars = session.query(Bar).filter(Bar.foo == 1)
link|flag

Your Answer

Get an OpenID
or

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