oracle部分面试题

oracle部分面试题

ID:42122798

大小:71.50 KB

页数:10页

时间:2019-09-08

oracle部分面试题_第1页
oracle部分面试题_第2页
oracle部分面试题_第3页
oracle部分面试题_第4页
oracle部分面试题_第5页
资源描述:

《oracle部分面试题》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、面试题一(厦门)Table:(员工emp1)idname1a2b3c4dTable:(性别sext)idsex1男4女5男找出忘记填写性别的员工(用Oracle的两种方式)selectid,namefromemp1ewheree.idnotin(selectidfromsext);selectidfromemp1minusselectidfromsext;select*fromemp1ewheree.id<>all(selectidfromsext);selecte.*fromemp1e,(selecti

2、dfromemp1minusselectidfromsext)swheree.id=s.id;selecte.id,e.namefromemp1e,sextswheree.id=s.id(+)ands.sexisnull;select*fromemp1leftouterjoinsextonemp1.id=sext.idwheresext.sexisnull;select*fromemp1ewherenotexists(select*fromsextswheree.id=s.id);select*frome

3、mp1whereidnotin(selectemp1.idfromemp1,sextwhereemp1.id=sext.id);selectnamefromemp1whereidnotin(selectidfromemp1intersectselectidfromsext);SELECT*FROMemp1eWHERE(SELECTCOUNT(*)FROM(SELECTidFROMemp1UNIONALLSELECTidFROMsext)tWHEREt.id=e.id)<2;面试题二(上海)表一(AAA)商

4、品名称mc商品总量slA100B120表二(BBB)商品名称mc出库数量slA10A20B10B20B30用一条Transact-SQL语句算出商品A,B目前还剩多少?selectAAA.mc,sl-e.sum_slasleavefromAAA,(selectsum(sl)sum_sl,mcfromBBBgroupbymc)ewhereAAA.mc=e.mcOracle教程selectAAA.mc,AAA.sl-(selectsum(BBB.sl)fromBBBwhereBBB.mc=AAA.mc)fro

5、mAAA;面试题三(上海)人员情况表(employee)中字段包括,员工号(ID),姓名(name),年龄(age),文化程度(wh):包括四种情况(本科以上,大专,高中,初中以下),现在我要根据年龄字段查询统计出:表中文化程度为本科以上,大专,高中,初中以下,各有多少人,占总人数多少。结果如下:学历年龄人数百分比本科以上203414大专203313高中203313初中以下2010040本科以上215020。。。。。。Transact-SQL查询语句如何写?selectwh,age,trunc(count

6、(*)/(selectcount(*)fromemployee)*100)fromemployeegroupbywh,age;面试题四(上海)1.Here'stwotableSTUDENTandSCORE_RANK,writeaSQL,listallstudent'snamewhoranks'A'TableSTUDENTCOLUMNNAMECOLUMNTYPECommentIDchar(9)notnullableStudent‟sIDNAMEVarchar(30)notnullableStudent‟sN

7、ameSCOREIntnullableStudent‟sscoreTableSCORE_RANKCOLUMNNAMECOLUMNTYPECommentLO_SCOREIntnotnullableLowscoreHI_SCOREIntnotnullableHighscoreRANKChar(1)nullablerankSelectnamefromstudent,score_rankwherescorebetweenlo_scoreandhi_scoreandrank=‟A;2.Here‟stwotableS

8、TUDENTandSCORES,astudentwhohave3ormorecoursesrank„A‟isa„GOODLEARNER‟,writeaSQL,listall„GOODLEARNER‟„sname.TableSTUDENTCOLUMNNAMECOLUMNTYPECommentIDchar(9)notnullableStudent‟sIDNAMEVarchar(30)notnullableStudent‟sName

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。