摘要: 一. 表关系 1. 创建如下表,并创建相关约束. # 创建班级表 create table class ( cid int primary key not null auto_increment, caption varchar(20) not null ); # 创建老师表 create tabl 阅读全文
posted @ 2019-03-21 16:37 李培冠 阅读(502) 评论(0) 推荐(0) 编辑