sql练习题答案分析和总结.docx

  1. 1、本文档共15页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
snosnamesexdeptbirthage( sno sname sex dept birth age 其中约束如下: 学号不能存在相同的 名字为非空 性别的值只能是’男’或’女’ 系包括这几个:信息系,计算机科学系,数学系,管理系,中文 系,外语系,法学系 出生日期为日期格式 年龄为数值型,且在 0~100 之间 create table student( sno smallint constraint a primary key, 设 置学生学号为student的主键 sname varchar(10) not null, sex varchar(2) constraint b check(sex in(男,女)), 检查约束——性别的值只能是’男’或’女’ dept varchar(20) constraint c check(dept in( 信息系,计算机科学系,数学系,管理系,中文系 ,外语系,法学系)), 检查约束——系包括这几 个:信息系,计算机科学系,数学系,管理系,中文系,外 语系,法学系 birth datetime, age smallint constraint d check(age between 0 and and 100) 检查约束——年龄为数值型,且在~100之间 ) snocno sno cno cj 其中约束如下: sno 和 cno 分别参照 student 和 course 表中的 sno,cno 的字段 create table cs(sno smallint create table cs( sno smallint not null references student(sno), 定义成外键 cno smallint not null references course(cno), 定义成外键 cj smallint constraint e check(cj between 0 and 100), 检查约束——cj(成绩)只能在~100 之间,可以不输入值 constraint f primary key(sno,cno) 定 义学生学号和课程号为sc表的主键 ) course(课程表) cno cno cname 其约束如下: 课程号(cno)不能有重复的 create table course(cno create table course( cno smallint not null constraint g primary key, 设置课程号为course的主键 cname varchar(20) not null ) (三)针对学生课程数据库查询 Select sno Select sno,sname from student Select Select sname as 姓名,sno as 学号,dept as 所在地 from student select * select * from student select sname select sname,birth from student 查询学校中有哪些系。 select distinct select distinct dept from student select sno select sno from cs where cno is not null select sname, select sname,age from student where age 20 select sname,dept,age from select sname,dept,age from student where age between 20 and 23 select sname, select sname,dept,age from student where age20 or age23 select sname select sname,sex from student where dept= 信息系 or dept=数学系 or dept=计算机科学系 select sname select sname,sex from student where dept!= 信息系 and dept!=数学系 and dept!=计算机科学系 select select sname,sno,sex from student where sname like(刘%) select * from student where select * from student where sno=5 select sname select sname from student where sname lik

文档评论(0)

hao187 + 关注
官方认证
内容提供者

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

认证主体武汉豪锦宏商务信息咨询服务有限公司
IP属地上海
统一社会信用代码/组织机构代码
91420100MA4F3KHG8Q

1亿VIP精品文档

相关文档