DEV Community

Ssali Jonathan
Ssali Jonathan

Posted on

Many to Many relationships In SQLAlchemy

In this video, I talk about many to many relationships in SQLAlchemy.

When numerous records in one table are linked to several records in another table, this is known as a many-to-many relationship.
Customers and products, for example, have a many-to-many relationship: customers can buy a variety of things, and products can be bought by a large number of customers.

In this video, I use that example to explain how many to many relationships are created in SQLAlchemy. I also demonstrate how to configure delete behavior with many to many relationships.

Top comments (0)