SQL数据库经典面试题修改笔试题有答案.doc
《SQL数据库经典面试题修改笔试题有答案.doc》由会员分享,可在线阅读,更多相关《SQL数据库经典面试题修改笔试题有答案.doc(66页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、. .28.数据库:抽出部门,平均工资,要求按部门的字符串顺序排序,不能含有human resource部门,employee构造如下:employee_id, employee_name,depart_id,depart_name,wage答:select depart_name, avg(wage)from employee where depart_name human resourcegroup by depart_name order by depart_name-29.给定如下SQL数据库:Test(num INT(4) 请用一条SQL语句返回num的最小值,但不许使用统计功能,如
2、MIN,MAX等答:select top 1 num from Test order by num -33.一个数据库中有两个表:一X表为Customer,含字段ID,Name;一X表为Order,含字段ID,CustomerID连向Customer中ID的外键,Revenue;写出求每个Customer的Revenue总和的SQL语句。建表create table customer(ID int primary key,Name char(10)gocreate table order(ID int primary key,CustomerID int foreign key referen
3、ces customer(id) , Revenue float)go-查询select Customer.ID, sum( isnull(Order.Revenue,0) )from customer full join order on( order.customerid=customer.id )group by customer.idselect customer.id,sum(order.revener) from order,customer where customer.id=customerid group by customer.idselect customer.id, s
4、um(order.revener )from customer full join orderon( order.customerid=customer.id )group by customer.id5数据库10a tabel called “performancecontain :name and score,please 用SQL语言表述如何选出score最high的一个仅有一个仅选出分数,Select max(score) from performance仅选知名字,即选知名字,又选出分数:select top 1 score ,name from per order by score
5、select name1,score from per where score in/=(select max(score) from per).4 有关系 s(sno,sname) c(o,ame) sc(sno,o,grade) 1 问上课程 db的学生no select count(*) from c,sc where c.ame=db and c.o=sc.oselect count(*) from sc whereo=(selecto from c where c.ame=db)2 成绩最高的学生号 select sno from sc where grade=(select max
6、(grade) from sc )3 每科大于90分的人数select c.ame,count(*) from c,sc where c.o=sc.o and sc.grade90 group by c.ameselect c.ame,count(*) from c join sc on c.o=sc.o and sc.grade90 group by c.ame数据库笔试题 *建表:dept:deptno(primary key),dname,locemp:empno(primary key),ename,job,mgr,sal,deptno*/ 1 列出emp表中各部门的部门号,最高工资,
7、最低工资select max(sal) as 最高工资,min(sal) as 最低工资,deptno from emp group by deptno;2 列出emp表中各部门job为CLERK的员工的最低工资,最高工资select max(sal) as 最高工资,min(sal) as 最低工资,deptno as 部门号 from emp where job = CLERK group by deptno;3 对于emp中最低工资小于1000的部门,列出job为CLERK的员工的部门号,最低工资,最高工资select max(sal) as 最高工资,min(sal) as 最低工资,
8、deptno as 部门号 from emp as bwhere job=CLERK and 1000(select min(sal) from emp as a where a.deptno=b.deptno) group by b.deptno4 根据部门号由高而低,工资有低而高列出每个员工的XX,部门号,工资select deptno as 部门号,ename as ,sal as 工资 from emp order by deptno desc,sal asc5 写出对上题的另一解决方法请补充6 列出X三所在部门中每个员工的XX与部门号select ename,deptno from
9、emp where deptno = (select deptno from emp where ename = X三)7 列出每个员工的XX,工作,部门号,部门名select ename,job,emp.deptno,dept.dname from emp,dept where emp.deptno=dept.deptno8 列出emp中工作为CLERK的员工的XX,工作,部门号,部门名select ename,job,dept.deptno,dname from emp,dept where dept.deptno=emp.deptno and job=CLERK9 对于emp中有管理者的
10、员工,列出XX,管理者XX管理者外键为mgrselect a.ename as ,b.ename as 管理者 from emp as a,emp as b where a.mgr is not null and a.mgr=b.empno10 对于dept表中,列出所有部门名,部门号,同时列出各部门工作为CLERK的员工名与工作select dname as 部门名,dept.deptno as 部门号,ename as 员工名,job as 工作 from dept,emp where dept.deptno *= emp.deptno and job = CLERK11 对于工资高于本部
11、门平均水平的员工,列出部门号,工资,按部门号排序select a.deptno as 部门号,a.ename as ,a.sal as 工资 from emp as awhere a.sal(select avg(sal) from emp as b where a.deptno=b.deptno) order by a.deptno12 对于emp,列出各个部门中平均工资高于本部门平均水平的员工数和部门号,按部门号排序select count(a.sal) as 员工数,a.deptno as 部门号 from emp as awhere a.sal(select avg(sal) from
12、 emp as b where a.deptno=b.deptno) group by a.deptno order by a.deptno13 对于emp中工资高于本部门平均水平,人数多与1人的,列出部门号,人数,按部门号排序select count(a.empno) as 员工数,a.deptno as 部门号,avg(sal) as 平均工资 from emp as awhere (select count(c.empno) from emp as c where c.deptno=a.deptno and c.sal(select avg(sal) from emp as b wher
13、e c.deptno=b.deptno)1group by a.deptno order by a.deptno14 对于emp中低于自己工资至少5人的员工,列出其部门号,工资,以及工资少于自己的人数select a.deptno,a.ename,a.sal,(select count(b.ename) from emp as b where b.sala.sal) as 人数 from emp as awhere (select count(b.ename) from emp as b where b.sal5数据库笔试题及答案第一套一.选择题1. 下面表达正确的选项是CCBAD _。A、算
14、法的执行效率与数据的存储构造无关B、算法的空间复杂度是指算法程序中指令(或语句)的条数C、算法的有穷性是指算法必须能在执行有限个步骤之后终止D、以上三种描述都不对2. 以下数据构造中不属于线性数据构造的是_。A、队列B、线性表C、二叉树D、栈3. 在一棵二叉树上第5层的结点数最多是_。A、8 B、16 C、32 D、154. 下面描述中,符合构造化程序设计风格的是_。A、使用顺序、选择和重复(循环)三种根本控制构造表示程序的控制逻辑B、模块只有一个入口,可以有多个出口C、注重提高程序的执行效率 D、不使用goto语句5. 下面概念中,不属于面向对象方法的是_。A、对象 B、继承 C、类 D、过
15、程调用6. 在构造化方法中,用数据流程图(DFD)作为描述工具的软件开发阶段是_ BDBCA _。A、可行性分析 B、需求分析 C、详细设计 D、程序编码7. 在软件开发中,下面任务不属于设计阶段的是_。A、数据构造设计 B、给出系统模块构造 C、定义模块算法 D、定义需求并建立系统模型8. 数据库系统的核心是_。A、数据模型 B、数据库管理系统 C、软件工具 D、数据库9. 以下表达中正确的选项是_。A、数据库是一个独立的系统,不需要操作系统的支持B、数据库设计是指设计数据库管理系统C、数据库技术的根本目标是要解决数据共享的问题D、数据库系统中,数据的物理构造必须与逻辑构造一致10. 以下模
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- SQL 数据库 经典 试题 修改 笔试 答案
限制150内