Code Monkey home page Code Monkey logo

python-p3-conclusion-to-sqlalchemy-relationships's Introduction

Conclusion to SQLAlchemy Relationships

Learning Goals

  • Use SQLAlchemy to join tables with one-to-one, one-to-many, and many-to-many relationships.

Conclusion

In this Canvas module, we learned how to use SQLAlchemy to build relationships between data models and persist them in our larger database schemas. SQLAlchemy has several important classes, methods, and keywords to remember when you're building relationships in your own databases:

  • The ForeignKey class is used in the Column constructor to create foreign key relationships.
  • The relationship() method generates an attribute within a data model that maps to a record from a separate data model.
  • The backref and back_populates keywords generate attributes in the related data model that map to records from the current data model.
  • The uselist keyword defaults to True, but creates a one-to-one relationship when set to False.
  • The Table class can be used to quickly create data models; it is especially useful for creating association tables.
  • The secondary keyword allows us to build relationships through an association table using only the names of the data models on either side.

SQLAlchemy is a robust and sometimes complex library that gives you the power to create and relate any number of database tables for your Python applications. It can certainly get overwhelming if you attempt to memorize every class, method, and keyword, so remember to lean on its robust online documentation and the lessons from this Canvas module as you start out. Soon enough, you'll be able to build entire databases without ever looking away from VSCode- but there's no rush!

Next up in the curriculum, you will get a chance to explore every programmer's favorite topic- algorithms!


Resources

python-p3-conclusion-to-sqlalchemy-relationships's People

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.