(1)
create table 学生(
学号 int primary key,
姓名 varchar(4),
性别 char(2),
年龄 int,
系号 int foreign key
)
(2)
select from 学生 where 姓名 like '张%';
(3)
select 学号,姓名 from 学生 where 学号 in(
select 学号 from 选课 where 课程号 = (
select 课程号 from 课程 where 课程名 = ‘SQL Server’
)
);
(4)
select 课程名 from 课程 where 课程号 not in (
select 课程号 from 选课
);
(5)
select 学号,姓名,性别,年龄+1 as 年龄,系号 from 学生;
(6)
select from 学生 where 学号 in (
select 学号 from 选课 where 成绩 = 0
);
以上就是关于下列是一个学生选课数据库的关系模型,请按要求写出T-SQL语句。全部的内容,包括:下列是一个学生选课数据库的关系模型,请按要求写出T-SQL语句。、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)