题目内容

设有关系M、S、F:M(编号,姓名,性别,单位号),S(单位号,单位名),F(编号,姓名,性别,单位号)。其中,M为男性员工的集合,F为女性员工的集合。题目5:查询单位名为‘1号仓库’的所有员工的基本信息(编号,姓名,性别,单位号)。能实现本查询的对应的SQL语句是()。

A. select * from m join s on m.单位号=s.单位号where 单位名='1号仓库'unionselect * from f join s on f.单位号=s.单位号where 单位名='1号仓库'
B. select * from m ,s where m.单位号=s.单位号 and 单位名='1号仓库'unionselect * from f,s where f.单位号=s.单位号 and 单位名='1号仓库'
C. select * from m where 单位号= (select 单位号 from s where 单位名='1号仓库')unionselect * from f where 单位号= (select 单位号 from s where 单位名='1号仓库')
D. select 编号,姓名,性别,t.单位号 from(select * from M union select * from F) as t join S on t.单位号=s.单位号where 单位名='1号仓库'
E. select 编号,姓名,性别,m.单位号 from m join s on m.单位号=s.单位号where 单位名='1号仓库'unionselect 编号,姓名,性别,f.单位号 from f join s on f.单位号=s.单位号where 单位名='1号仓库'
F. select 编号,姓名,性别,m.单位号 from m ,s where m.单位号=s.单位号 and 单位名='1号仓库'unionselect 编号,姓名,性别,f.单位号 from f,s where f.单位号=s.单位号 and 单位名='1号仓库'
G. select * from m where 单位号 in (select 单位号 from s where 单位名='1号仓库')unionselect * from f where 单位号 in (select 单位号 from s where 单位名='1号仓库')

查看答案
更多问题

使用上题的 SPJN 数据库及上题中创建的“三建”工程项目的供应情况的视图V1。题目2:使用视图V1,查询三建工程项目使用的各种零件代码及其数量。以下SQL语句正确的是()。

A. select PNO, QTY from V1
B. select 零件号, 供应数量 from V1
C. select 零件号, sum(供应数量) from V1 group by 零件号
D. select 零件号, count(供应数量) from V1 group by 零件号

使用上题的 SPJN 数据库及上题中创建的“三建”工程项目的供应情况的视图V1。题目3:使用视图V1,查询供应商S1为“三建工程”提供的各种零件的零件号及其数量。以下SQL语句正确的是()。

A. select 零件号,供应数量 from V1 where 供应商号='S1'
B. select pno as 零件号, qty as 供应数量from spjwhere SNO='S1' and JNO=(select JNO from J where JNAME='三建')
C. select 零件号, sum(供应数量) from V1 where 供应商号='S1'group by 零件号
D. select 零件号, sum(供应数量) from V1 where 供应商号='S1' group by 供应商号,零件号
E. select pno as 零件号, sum(qty) as 供应数量from spjwhere SNO='S1' and JNO=(select JNO from J where JNAME='三建')group by 零件号

使用高压灭菌锅压力达到0.165MPa时,安全阀还未开启,此时应该?

A. 不做理会
B. 做标记
C. 立即关闭电源,打开放气阀按钮,并做好标记停止使用
D. 直接开盖

灭菌温度应不超过多少度?

A. 500℃
B. 100℃
C. 131℃
D. 121℃

答案查题题库