1Z0-061 Exam Questions
318 real 1Z0-061 exam questions with expert-verified answers and explanations. Page 7 of 7.
- Question #305
View the Exhibit and examine the structure of the PRODUCTS table. Which two tasks would require subqueries? (Choose two.)
- Question #306
View the Exhibit and examine the structure of the PRODUCTS table. You want to display the category with the maximum number of items. You issue the following query: SQL>SELECT COUNT...
- Question #307
View the Exhibit and examine the structure of the PRODUCTS tables. You want to generate a report that displays the average list price of product categories where the average list p...
- Question #308
View the Exhibits and examine the structures of the COSTS and PROMOTIONS tables. Evaluate the following SQL statement: SQL> SELECT prod_id FROM costs WHERE promo_id IN (SELECT prom...
- Question #309
View the Exhibit and examine the structure of the ORDERS and CUSTOMERS tables. Evaluate the following SQL command: SQL> SELECT o.order_id, c.cust_name, o.order_total, c.credit_limi...
- Question #310
Which of these is a defining characteristic of a complex view, rather than a simple view? (Choose one or more correct answers.)
- Question #311
Consider these three statements: create view v1 as select department_id,department_name,last_name from departments join employees using (department_id); select department_name,last...
- Question #312
Study this view creation statement: create view dept30 as select department_id,employee_id,last_name from employees where department_id=30 with check option; What might make the fo...
- Question #313
There is a simple view SCOTT.DEPT_VIEW on the table SCOTT.DEPT. This insert fails with an error: SQL> insert into dept_view values('SUPPORT','OXFORD'); insert into dept_view values...
- Question #314
What are distinguishing characteristics of a public synonym rather than a private synonym? (Choose two correct answers.)
- Question #315
Consider these three statements: create synonym s1 for employees; create public synonym s1 for departments; select * from s1; Which of the following statements is correct? (Choose...
- Question #316
A view and a synonym are created as follows: create view dept_v as select * from dept; create synonym dept_s for dept_v; Subsequently the table DEPT is dropped. What will happen if...
- Question #317
A sequence is created as follows: create sequence seq1 maxvalue 50; If the current value is already 50, when you attempt to select SEQ1.NEXTVAL what will happen? (Choose the best a...
- Question #318
You create a sequence as follows: create sequence seq1 start with 1; After selecting from it a few times, you want to reinitialize it to reissue the numbers already generated. How...
- Question #319
Study the following exhibit: Assuming that the sequence SEQ1 was created with the option ORDER and INCREMENT BY set to 1, what value will be returned by the final SELECT statement?...
- Question #320
A UNIQUE constraint on a column requires an index. Which of the following scenarios is correct? (Choose one or more correct answers.)
- Question #321
This statement will fail: create unique bitmap index on employees(department_id,hire_date); Why? (Choose the best answer.)
- Question #322
You have created an index with this statement: create index ename_i on employees(last_name,first_name); How can you adjust the index to include the employees' birthdays, which is a...