Django之学员管理二 学生表的一对多的增删改查 views.py def students(request): #select students.sid,students.name,classes.title from students left JOIN classes on students.classes_id=classes.nid; conn = pymysql.connect(host="127.0.0.1",port=3306,user='root',passwd='…
Django之学员管理一 建表结构: #班级表class: id title 1 五年一班 2 五年二班 3 五年三班 4 五年四班 #学生表student: id name 班级ID(FK外键) 1 George 1 2 Jack 2 3 Tom 2 4 Alex 1 #老师表teacher: id name 1 Crystal 2 Lee 3 Iron Man #老师班级关系表teacher_and_class: id 老师ID 班级ID 1 1 1 2 1 2 3 2 3 4 2 4 5…