使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
Choose three
Which three are true about the CREATE TABLE command?
Choose two
The CUSTOMERS table has a CUST_CREDT_LIMIT column of data type number.
Which two queries execute successfully?
Choose the best answer
The CUSTOMERS table has a CUST_LAST_NAME column of data type VARCHAR2.
The table has two rows whose COST_LAST_MANE values are Anderson and Ausson.
Which query produces output for CUST_LAST_SAME containing Oder for the first row and Aus for the
second?
Which three statements are true about indexes and their administration in an Oracle database?
Which three are true about granting object privileges on tables, views, and sequences?
The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type DATE
You want to display the date of the first Monday after the completion of six months since hiring
The NLS_TERRITORY parameter is set to AMERICA in the session and, therefore, Sunday is the first day of the week
Which query can be used?
Which three statements are true about views in an Oracle database?
Which two statements are true about Oracle synonyms?
Choose two.
Which two statements are true about a self join?
Which three statements are true about dropping and unused columns in an Oracle database?
Choose the best answer.
Examine this query:
SELECT TRUNC (ROUND(156.00,-2),-1) FROM DUAL;
What is the result?
Examine this SQL statement:
UPDATE orders o
SET customer_name =
(SELECT cust_last_name
FROM customers
WHERE customer_id=o.customer_id);
Which two are true?
Examine this partial command:
CREATE TABLE cust (
cust_id NUMBER(2),
credit_limit NUMBER(10)
)
ORGANIZATION EXTERNAL
Which two clauses are required for this command to execute successfully?
Examine this business rule:
Each student can work on multiple projects and earth project can have multiple students
You must decision an Entity Relationship (ER) model for optional data storage and allow generating
reports in this format:
STUDENT_ID FIRST_NAME LAST_NAME PROJECT_ID PROJECT_NAME PROJECT_TASK
Which two statements are true?
Which two statements are true about the WHERE and HAVING clauses in a SELECT statement?
The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of
data type DATE
NLS_DATE_FORMAT is set to DD-MON-RR.
Which two are true about data type conversions involving these columns in query expressions?
The PRODUCT_INFORMATION table has a UNIT_PRICE column of data type NUMBER(8, 2).
Evaluate this SQL statement:
SELECT TO_CHAR(unit_price,'$9,999') FROM PRODUCT_INFORMATION;
Which two statements are true about the output?