摘要: Mysql练习#2-查询 查询练习 1、查询student表的所有记录 select * from student; *表示所有 2、查询student表中所有记录的sname、ssex和class列 select sname,ssex,class from student; 3、查询教师所有的单位 阅读全文
posted @ 2020-12-06 12:12 DravenJH 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Mysql练习#1-建表 创建表 学生表 Student 学号 姓名 性别 出生年月日 所在班级 create table Student( sno varchar(20) primary key, sname varchar(20) not null, ssex varchar(20) not n 阅读全文
posted @ 2020-12-06 12:10 DravenJH 阅读(54) 评论(0) 推荐(0) 编辑