当前位置:网站首页 > 技术团队招聘与面试 > 正文

存储过程 面试题(存储过程笔试题)



28、ﻫ数据库:抽出部门,平均工资,要求按部门得字符串顺序排序,不能含有"human resource"部门,employee结构如下:

employee_id,employee_name,depart_id,depart_name,wage 答:ﻫselect depart_name, avg(wage)

fromemployee where depart_name〈〉'humanresource'ﻫgroup by depart_nameorder by depart_name

---—--——----—-——----—--——-—---———----—————-—-

29、

—-—--—---—-—--————-——--——--——ﻫ

给定如下SQL数据库:Test(num INT(4))请用一条SQL语句返回num得最小值,但不许使用统计功能,如MIN,MAX等

答:

select top1 num from Test orderbynum

----—-----——-—----———----—---—----—-—-—-———-—-

33、一个数据库中有两个表:——----—-—----—--—--——--—----ﻫ

一张表为Customer,含字段ID,Name;

一张表为Order,含字段ID,CustomerID(连向Customer中ID得外键),Re venue;ﻫ写出求每个Customer得Revenue总与得SQL语句。

建表create table customerﻫ(ID int primary key,Namechar (10))

go

create table [order]ﻫ(ID int primary key,CustomerID int foreign key references customer(id),Revenue float)

go

--查询ﻫselect Customer、ID, sum(isnull([Order]、Revenue,0))ﻫfrom customer full join [order]on([order]、custome rid=customer、id)

groupby customer、id

selectcustomer、id,sum(order、revener) fromorder,customer where customer、id=customerid group by customer、id

select customer、id,sum(order、revener)from customer fulljoin order

on(order、customerid=customer、id)group bycustomer、id

5数据库(10)

a tabel called “performance”contain :name andscore,please用SQL语言表述

如何选出score最high得一个(仅有一个)

仅选出分数,Select max(score) from performance

仅选出名字,即选出名字,又选出分数:

select top 1score,name fromperorder by score

select name1,score from per where score in/=(select max(score)fromper)

、、、、、

4有关系s(sno,sname) c(cno,cname) sc(sno,cno,grade)

1 问上课程"db"得学生no

select count(*)from c,scwhere came='db’ and co=scoselect count(*)fromsc wherecno=(select cnofrom c where came=’db')

2成绩最高得学生号

select sno from sc wheregrade=(select max(grade)from sc )

3 每科大于90分得人数

select came,count(*)from c,scwhere co=scoand sc、grad e>90 group by came

select came,count(*)from c join sc on co=sco and sc、grade>90group bycame

数据库笔试题

*ﻫ建表:

dept:ﻫ deptno(primary key),dname,locﻫemp:

empno(primary key),ename,job,mgr,sal,deptnoﻫ*/

1列出emp表中各部门得部门号,最高工资,最低工资

select max(sal) as 最高工资,min(sal) as 最低工资,deptno from e mp groupby deptno;

2 列出emp表中各部门job为'CLERK'得员工得最低工资,最高工资

select max(sal)as 最高工资,min(sal) as 最低工资,deptno as部门号fromempwherejob = 'CLERK' group by deptno;

3对于emp中最低工资小于1000得部门,列出job为’CLERK’得员工得部门号,最低工资,最高工资ﻫselect max(sal)as最高工资,min(sal)as最低工资,deptno as 部门号from empas bﻫwhere job='CLERK'and 1000〉(select min(sal)from emp as a where a、deptno=b、de ptno) groupby b、deptno

4 根据部门号由高而低,工资有低而高列出每个员工得姓名,部门号,工资

select deptno as部门号,ename as姓名,sal as 工资fromemp order by deptno desc,sal asc

5 写出对上题得另一解决方法

(请补充)

6 列出’张三'所在部门中每个员工得姓名与部门号ﻫselect ename,deptno fromemp wheredeptno =(selectdeptno from emp where ename='张三’)

到此这篇存储过程 面试题(存储过程笔试题)的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • 程序员 面试 八股文(程序员面试八股文合集)2025-03-29 16:18:09
  • 字符串转码utf8(字符串转码技术介绍)2025-03-29 16:18:09
  • Apollo配置中心健康检查(apollo配置中心面试题)2025-03-29 16:18:09
  • max3232eeue中文技术手册(max3232ei中文资料)2025-03-29 16:18:09
  • xps客服电话技术支持(dell xps客服电话)2025-03-29 16:18:09
  • jvm内存结构面试题(jvm 内存结构)2025-03-29 16:18:09
  • 程序员 面试 八股文(程序员面试八股文有什么)2025-03-29 16:18:09
  • max3232eeue中文技术手册(max3232cse中文资料)2025-03-29 16:18:09
  • 路由守卫面试题(路由守卫三个参数)2025-03-29 16:18:09
  • max31855中文手册(max3232eeue中文技术手册)2025-03-29 16:18:09
  • 全屏图片