关系表
已收录文章:1篇
-
1.创建学生表 create table tbl_stu ( id int not null primary key auto_increment, name varchar(45) not null )engine=innodb default charset=utf8; 2.创建科目表 create table tbl_sub ( id int not null primary key auto_increment, subject varchar(221 收藏