What's the difference between an association table and a regular table?
问题 I don't think I fully understand association tables. I know how to work with normal tables i.e add rows and what not but I don't understand how to work with an association table. why would I use the below student_identifier = db.Table('student_identifier', db.Column('class_id', db.Integer, db.ForeignKey('classes.class_id')), db.Column('user_id', db.Integer, db.ForeignKey('students.user_id')) ) Vs class studentIdent(db.model): db.Column(db.Integer, db.ForeignKey('classes.class_id')), db.Column