数据库实验二,sql查询语句.docVIP

  1. 1、本文档共9页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
数据库实验二,sql查询语句

实验二: select sno,sname,sex,sage from student; 例5-2: (不选择重复行) 求选修了课程的学生学号。 select distinct cno from sc where cno is not null; 例5-3: (选择表中的所有列) 求全体学生的详细信息。 select * from student; 例5-4: (使用表达式) 求全体学生的学号、姓名和出生年份。 select sno,sname,birthday from student; 例5-5: (使用列的别名) 求学生的学号和出生年份,显示时使用别名“学号”和“出生年份”。 select sno as学号,birthday as出生年份 from student; 例5-6: (比较大小条件) 求年龄大于19岁的学生的姓名和年龄。 select sname,age from student where age19; 例5-7: (比较大小条件) 求计算机系或经济管理系年龄大于18岁的学生的姓名、系和年龄。 select sname,depname ,age from student,department where student.depno=department.depno and age18; 例5-8: (确定范围条件) 求年龄在19岁与22岁(含20岁和22岁)之间的学生的学号和年龄。 select sno,age from student where age in(19,22); 例5-9: (确定范围条件) 求年龄不在19岁与22岁之间的学生的学号和年龄。 select sno,age from student where age not in(19,22); 例5-10:(确定集合条件) 求在下列各系的学生信息:数学系、计算机系。 select student.*,department.* from student,department where student.depno=department.depno and department.depname in(计算机系,数学系); 例5-11:(确定集合条件) 求不是数学系、计算机系的学生信息。 select student.*,department.* from student,department where student.depno=department.depno and department.depname not in(计算机系,数学系); 例5-12:(匹配查询) 求姓名是以“李”打头的学生。 select * from student where sname like 李%; 例5-13:(匹配查询) 求姓名中含有“志”的学生。 select * from student where sname like %志%; 例5-14:(匹配查询) 求姓名长度至少是三个汉字且倒数第三个汉字必须是“马”的学生。 select * from student where sname like %马__; 例5-15:(匹配查询) 求选修课程c1或c3,成绩在80至90之间,学号为10xxx的学生的学号、课程号和成绩。 select sno,cno,grade from sc and cno in (c1,c3) and grade between 80 and 90 and sno like 10_; 例5-16:(涉及空值查询) 求缺少学习成绩的学生的学号和课程号。 select sno,cno,grade from sc where grade is NULL 例5-17:(控制行的显示顺序) 求选修c3课程或c4课程的学生的学号、课程号和分数。 select sno,cno,grade from sc where cno in(c3,c4) 例5-18:(组函数) 求学生总人数。 select distinct count(sno) from student 例5-19:(组函数) 求选修了课程的学生人数。 select distinct count(sno) from sc 例5-20:(组函数) 求计算机系学生的平均年龄。 select avg(sage) from student where depno=9001 例5-21:(组函数) 求选修了课程c1的最高、最低与平均成绩。 select max(grade) ,min(grade),avg(

文档评论(0)

qwd513620855 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档