1、i职工号,姓名,家庭地址(6地址='办公室'(职工∞部门));
(pi转成数学符号)
2、select
职工号,姓名,性别,职务,
(select 部门名称
from 部门 d where d部门编号=e部门编号)
as 部门名称
from 职工 e
where e姓名 like '王%';
3、create view MyView
as
select
职工职工号,职工姓名,保健检查身体日期
from 职工 inner join 保健
on
职工职工号=保健职工号 and 保健健康状况='差';
4、delete from 保健 where 职工号 is null; (不知是不是这个意思)
5、select 职工编号,姓名,职务 from 职工
where 姓名 like '李%' and 性别='男';
6、create index XM_index on 职工(姓名 asc);
7、同第2题
1)
select ename,addr
from D
where dname='Research'
2)
select Pp#,Pd#,Dmgre#,Eaddr
from E,D,P
where Ppname='Stafford'
and Pd#=Ed#
and Dd#=Pd#
3)
select ename
from E
where Eename='5'
4)
select Pp#
from E,P
where Eename='Smith'
and Ed#=Pd#
5)
select Eename
from E,Depend
where Ee#=Depende#
group by Depende#
having count(name)>=2
6)
select Eename
from E,Depend
where Ese# is not null
and Dependname is not null
and Ee#=Depende#
7)
select Eename
from E,Depend
where Dependname is null
and Ee#=Depend=e#
8)
select ename,salary
from E
where salary in
(select max(salary) from E)
*** 作步骤
1、来到电脑的桌面,然后点击电脑的开始按钮,之后在d出的开始菜单中点击控制面板。
2、进入到控制面板的主页之后,就找到Internet选项,点击进入:
3、解决不了重新安装下恢复数据库就得了,也用不了多少时间。或者到别的电脑上重新装软件再返还数据就可以填写了。
以上就是关于数据库习题,紧急求助!!!全部的内容,包括:数据库习题,紧急求助!!!、数据库查询、升高中网上填家庭地址时显示学生信息已经绑定进不去系统该如何 *** 等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)