移动端

  • 题王微信公众号

    题王微信公众号

    微信搜“题王网”真题密题、最新资讯、考试攻略、轻松拿下考试

计算机考试 | Oracle认证考试

模式切换

0 0 0
我的错题 我的收藏 学习笔记

章节目录

多选题 Which two statements complete a transaction?()

A

DELETE employees;

B

DESCRIBE employees;

C

ROLLBACK TO SAVE POINT C;

D

GRANT SELECT ON employees TO SCOTH

E

ALTER TABLE employees SET UNUSED COLUMN sal;

F

Select MAX(sal) FROM employees WHERE department _ id 20;

多选题 Examine the description of the STUDENTS table: STD_ID NUMBER(4) COURSE_ID VARCHAR2(10) START_DATE DATE END_DATE DATE Which two aggregate functions 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)

单选题 The database administrator of your company created a public synonym called HR for the HUMAN_RESOURCES table of the GENERAL schema, because many users frequently use this table. As a user of the database, you created a table called HR in your schema. What happens when you execute this query?()

A

You obtain the results retrieved from the public synonym HR created by the database administrator.

B

You obtain the results retrieved from the HR table that belongs to your schema.

C

You get an error message because you cannot retrieve from a table that has the same name as a public synonym.

D

You obtain the results retrieved from both the public synonym HR and the HR table that belongs to your schema, as a Cartesian product.

E

You obtain the results retrieved from both the public synonym HR and the HR table that belongs to your schema, as a FULL JOIN.

单选题 What is true about the WITH GRANT OPTION clause?()

A

It allows a grantee DBA privileges.

B

It is required syntax for object privileges.

C

It allows privileges on specified columns of tables.

D

It is used to grant an object privilege on a foreign key column.

E

It allows the grantee to grant object privileges to other users and roles.

多选题 Which two tasks can your perform by using the TO_CHAR function?()

A

Convert 10 to ‘TEN’

B

Convert ‘10’ to 10

C

Convert ‘10’ to ‘10’

D

Convert ‘TEN’ to 10

E

Convert a date to a character expression

F

Convert a character expression to a date

单选题 The STUDENT_GRADES table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) The registrar requested a report listing the students' grade point averages (GPA) sorted from highest grade point average to lowest. Which statement produces a report that displays the student ID and GPA in the sorted order requested by the registrar?()

A

SELECT student_id, gpa FROM student_grades ORDER BY gpa ASC;

B

SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa ASC;

C

SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa;

D

SELECT student_id, gpa FROM student_grades ORDER BY gpa;

E

SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa DESC;

F

SELECT student_id, gpa FROM student_grades ORDER BY gpa DESC;

单选题 Which statement creates a new user? ()

A

CREATIVE USER susan;

B

CREATIVE OR REPLACE USER susan;

C

CREATE NEW USER susan DEFAULT

D

CREATE USER susan IDENTIFIED BY blue;

E

CREATE NEW USER susan IDENTIFIED BY blue;

F

CREATE OR REPLACE USER susan IDENTIFIED BY blue;

多选题 In which two cases would you use an outer join?()

A

The tables being joined have NOT NULL columns.

B

The tables being joined have only matched data.

C

The columns being joined have NULL values.

D

The tables being joined have only unmatched data.

E

The tables being joined have both matched and unmatched data.

F

Only when the tables have a primary key/foreign key relationship.

多选题 Which two statements are true regarding the ORDER BY clause? ()

A

The sort is in ascending by order by default.

B

The sort is in descending order by default.

C

The ORDER BY clause must precede the WHERE clause.

D

The ORDER BY clause is executed on the client side.

E

The ORDER BY clause comes last in the SELECT statement.

F

The ORDER BY clause is executed first in the query execution.

最新资讯

1 2 3 4 5 下一页 尾页 /

到第