摘要:
book表和author表是多对多关系,ManyToManyField创建在book表当中: class Author(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length= 阅读全文
摘要:
from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column from sqlalchemy import Integer,String,Text,Date,DateTime,Foreign 阅读全文