CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
可用分押宝游戏火热进行中... 专题改版:Java Web 专题
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  Oracle >  基础和管理

各位高手帮我分析几道题,据说是某个公司的笔试题目。(感激!回复既有分数)

楼主goldly(路人乙)2004-08-02 13:41:56 在 Oracle / 基础和管理 提问

1. What   are   the   three   major   theoretical   characteristics   of   an   RDBMS?  
  A. Integrity   rules    
  B. Records    
  C. Fields  
  D. Structures    
  E. Operations  
  F. Instances  
   
  2. There   are   four   categories   of   SQL   operations,   Which   is   the   category   for   operations   that   include   REVOKE,   ALTER   USER   and   GRANT?  
  A. DML(Data   Manipulation   Language)  
  B. TCO(Transaction   Control   Operations)  
  C. DDL(Data   Definition   Language)  
  D. DCL(Data   Control   Language)  
  3. Which   character   function   would   you   use   to   return   a   specified   portion   of   a   character   string?  
  A. CONCAT  
  B. SUBSTR  
  C. LENGTH  
  D. INITCAP  
   
  4. There   are   four   set   operations,   which   one   would   show   common   results   from   queries   A   and   B?  
  E. COMMON  
  F. MINUS  
  G. INTERSET  
  H. UNION   ALL  
  I. UNION  
  5. You   are   evaluating   a   procedure   that   has   the   function   MOD(100,   10).   What   would   be   the   result?  
  A. 10  
  B. 1000  
  C. 10000  
  D. 100  
  E. 0  
  6. You   encounter   the   following   statements:  
  SELECT   e1.ename||’works   for   ‘||e2.ename   “Employees   and   their   Managers”FROM   emp   e1,   emp   e2   WHERE   e1.mgr   =e2.empno;   What   kind   of   join   is   this?  
  A. Cartesian  
  B. Equi  
  C. Self  
  D. Outer  
  7. Evaluate   the   following   statement  
  SELECT   qty   FROM   sales   WHERE   rate   IN   (300,   800);  
  Which   operator   among   the   following   could   be   used   to   substitute   the   ‘IN’operator?  
  A. AND  
  B. BETWEEN   ..AND  
  C. LIKE  
  D. >=  
  E. OR  
  F. <=  
  8. One   is     the   default   length   value   for   which   column?  
  A. CHAR  
  B. VARCHAR2  
  C. NUMBER  
  D. DATE  
  9. What   does   the   following   statement   accomplish?  
  CREATE   PUBLIC   SYNONYM   emp   FOR   john.employee;  
  A. New   object   privilege   was   assigned  
  B. System   privilege   was   created  
  C. Need   to   use   an   object   name   with   its   schema   was   eliminated  
  D. None   of   above  
  10. Which   of   the   following   commands   cause   an   implicit   COMMIT?  
  A. ALTER  
  B. GRANT  
  C. UPDATE  
  D. COMMIT  
  E. INSERT  
  F. CREATE  
  问题点数:0、回复次数:9Top

1 楼goldly(路人乙)回复于 2004-08-02 13:49:45 得分 0

下面是偶的答案,欢迎拍砖。  
  Top

2 楼goldly(路人乙)回复于 2004-08-02 15:43:30 得分 0

下面是偶的答案,欢迎拍砖。  
  1. ADE  
  2. A  
  3. B  
  4. F  
  5. E  
  6. C  
  7. B  
  8. A  
  9. A  
  10.                               ABF  
  Top

3 楼goldly(路人乙)回复于 2004-08-02 16:07:26 得分 0

顶一个!Top

4 楼netjia(风中流浪)回复于 2004-08-02 17:05:28 得分 0

不怎么明白  
  顶哦~Top

5 楼goldly(路人乙)回复于 2004-08-02 21:30:38 得分 0

up!!!Top

6 楼ineedtostudy(amei)回复于 2004-08-02 22:39:28 得分 0

 
  2:c  
   
  7:e  
   
  8:c  
   
   
   
  继续欢迎拍砖Top

7 楼goldly(路人乙)回复于 2004-08-02 23:19:59 得分 0

2   D  
  7   E  
  8   ATop

8 楼dinya2003(OK)回复于 2004-08-03 07:39:33 得分 0

我来看看大家做题,学习.Top

9 楼bzszp(SongZip)回复于 2004-08-03 10:19:32 得分 0

4:G  
  10:13:28   SQL>   select   distinct   upper(b)   from   tb_1;  
   
  UPPER(B)  
  ----------  
  8  
  9  
  A  
  C  
  G  
  T  
   
  已选择6行。  
   
  已用时间:     00:   00:   00.31  
  10:13:43   SQL>   select   distinct   upper(col1)   from   tb;  
   
  UPPER(COL1  
  ----------  
  A  
  B  
  C  
   
  已用时间:     00:   00:   00.00  
  10:13:53   SQL>   select   distinct   upper(col1)   from   tb  
  10:13:56       2     intersect  
  10:13:58       3     select   distinct   upper(b)   from   tb_1;  
   
  UPPER(COL1  
  ----------  
  A  
  C  
   
  已用时间:     00:   00:   00.15  
  10:14:01   SQL>Top

相关问题

  • Intel笔试题目
  • 推荐Delphi笔试题目
  • 求救:笔试题目
  • 两个笔试题目
  • 群硕笔试题目
  • 中兴笔试题目
  • 求PHP招聘的笔试题目。
  • 一道AUTODESK笔试的题目
  • 求教一C++题目————北电笔试
  • 急!!!求慧通笔试题目!

关键词

  • sql
  • upper
  • tb
  • col
  • operator
  • select distinct
  • 时间
  • language
  • are
  • data

得分解答快速导航

  • 帖主:goldly

相关链接

  • Oracle类图书

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
世纪乐知(北京)网络技术有限公司 版权所有, 京 ICP 证 020026 号
北京创新乐知广告有限公司 提供技术支持
Copyright © 2000-2007, CSDN.NET, All Rights Reserved
GongshangLogo