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

  • SEARCH
  • Home
  • 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 6078511
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:50:31+00:00 2026-05-23T10:50:31+00:00

Using SQLAlchemy 0.7.1 and a MySQL 5.1 database, I’ve got a many-to-many relationship set

  • 0

Using SQLAlchemy 0.7.1 and a MySQL 5.1 database, I’ve got a many-to-many relationship set up as follows:

user_groups = Table('user_groups', Base.metadata,
    Column('user_id', String(128), ForeignKey('users.username')),
    Column('group_id', Integer, ForeignKey('groups.id'))
)

class ZKUser(Base, ZKTableAudit):
    __tablename__ = 'users'

    username   = Column(String(128), primary_key=True)
    first_name = Column(String(512))
    last_name  = Column(String(512))

    groups = relationship(ZKGroup, secondary=user_groups, backref='users')

class ZKGroup(Base, ZKTableAudit):
    __tablename__ = 'groups'

    id          = Column(Integer, primary_key=True)
    name        = Column(String(512))

Users can belong to multiple Groups, and Groups can contain multiple Users.

What I’m trying to do is build a SQLAlchemy query that returns only the Users who belong to at least one Group out of a list of Groups.

I played around with the in_ function, but that only seems to work for testing scalar values for membership in a list. I’m not much of a SQL writer, so I don’t even know what kind of SELECT statement this would require.

  • 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-23T10:50:32+00:00Added an answer on May 23, 2026 at 10:50 am

    OK, after a lot of research, I realized that it was my own ignorance of SQL terminology that was holding me back. My search for a solution to find users belonging to “at least one of” the list of groups should have been to find users belonging to “any” of the list of groups. The any ORM function from SQLAlchemy does exactly what I needed, like so:

    session.query(ZKUser).filter(ZKUser.groups.any(ZKGroup.id.in_([1,2,3])))
    

    That code emits this SQL (on MySQL 5.1):

    SELECT * FROM users 
    WHERE EXISTS (
        SELECT 1 FROM user_groups, groups 
        WHERE users.id = user_groups.contact_id 
            AND groups.id = user_groups.group_id 
            AND groups.id IN (%s, %s, %s)
        )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using SQLAlchemy, given tables such as these: locations_table = Table('locations', metadata, Column('id', Integer, primary_key=True),
I create a table in database using sqlalchemy and now want to make a
I am developing a Python web app using sqlalchemy to communicate with mysql database.
I have a ~10M record MySQL table that I interface with using SqlAlchemy. I
I have a Flask web application using SQLAlchemy with MySQL, and I have set
Hi im using sqlalchemy on a db2 table with 500k rows. using plain sql
I've been trying to map an object to a database using SQLAlchemy but have
How do I select one or more random rows from a table using SQLAlchemy?
I'm using ORM in sqlalchemy . The actual situation is I'm also using MySQL
I am using sqlalchemy with MySQL , and executing query with sql expression. When

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.