Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6534285
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:13:57+00:00 2026-05-25T10:13:57+00:00

I have a table with many columns — class Dummy(object): __tablename__ = ‘dummies’ c1

  • 0

I have a table with many columns —

class Dummy(object):
    __tablename__ = 'dummies'
    c1 = Column(Integer)
    c2 = Column(Integer)
    c3 = Column(Integer)
    ...
    cN = Column(Integer)

Can I query through all columns individually without specifying each column name manually? —

for i in range(1, N):
    c_name = 'c%d' % i
    dummy = DBSession().query(Dummy).filter_by(???=0).first()

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:13:58+00:00Added an answer on May 25, 2026 at 10:13 am

    You can iterate over the columns in a table. First, the table:

    from sqlalchemy.orm.attributes import manager_of_class
    dummy_table = manager_of_class(Dummy).mapper.mapped_table
    

    and finally, the query

    for col in dummy_table.columns:
        dummy = session.query(Dummy).filter(col == 0).first()
    

    Or maybe, you actually are generating a specific set of columns from a more elaborate function than you’re showing. In which case, use getattr. No, really.

    for i in range(1, N):
        c_name = 'c%d' % i
        dummy = DBSession().query(Dummy).filter(getattr(Dummy, c_name) == 0).first()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table of product information with many bit columns. This table can
I have a filter object to query a table with many columns, and rather
I have a data.table DT with a column named RF and many columns with
I have a fixed width DIV containing a table with many columns, and need
I have a table of many values where one column has the WO Number,
I'm using SQL-Server 2005. I have table with many columns, rows i select have
I have a table which has many columns and lots of records. My user
I have a table, which contains many columns of float data type with 15
I have a table with many columns among which I'd like to omit a
I have a very big table with many columns. Values in some of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.