1 / 5
文档名称:

神州数码笔试题目选择部分分享.doc

格式:doc   页数:5
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

神州数码笔试题目选择部分分享.doc

上传人:豆芽 2014/1/13 文件大小:0 KB

下载得到文件列表

神州数码笔试题目选择部分分享.doc

文档介绍

文档介绍:神州数码笔试题目选择部分分享

神州数码笔试题目分享:
选择题:
1)Which statement shows the maximum salary paid in each job category of each department?_______
A。 select dept_id, job_cat,max(salary) from employees where salary max(salary);
B。 select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat;
C。 select dept_id, job_cat,max(salary) from employees;
D。 select dept_id, job_cat,max(salary) from employees group by dept_id;
E。 select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat,salary;
2)description of the students table:
sid_id number
start_date date
end_date date
which two function are valid on the start_date column?_________。
A。 sum(start_date)
B。 avg(start_date)
C。 count(start_date)
D。 avg(start_date,end_date)
E。 min(start_date)
F。 maximum(start_date)
3)for which two constraints does the oracle server implicitly create a unique index?______。
A。 not null
B。 primary
C。 foreign key
D。 check
E。 unique
4)in a select statement that includes a where clause,where is the group by clause placed in the select statement?______。
A。 immediately after the select clause
B。 before the where clause
C。 before the from clause
D。 after the order by clause
E。 after the where clause
5)in a select statement that includes a where clause,where is the order by clause placed in the select statement?______。
A。immediately af