摘要: 1、 查询Student表中的所有记录的Sname、Ssex和Class列。 2、 查询教师所有的单位即不重复的Depart列。 3、 查询Student表的所有记录。 4、 查询Score表中成绩在60到80之间的所有记录。 5、 查询Score表中成绩为85,86或88的记录。 6、 查询Stu 阅读全文
posted @ 2018-01-02 22:06 palpitate 阅读(1962) 评论(0) 推荐(0) 编辑
摘要: create table student( sno varchar(20)not null primary key, sname varchar(20)not null, ssex varchar(20)not null, sbirthday datetime null, class varchar(20)null ); insert into student values(... 阅读全文
posted @ 2018-01-02 16:09 palpitate 阅读(2639) 评论(0) 推荐(0) 编辑