1Z0-051 Premium Bundle

1Z0-051 Premium Bundle

Oracle Database: SQL Fundamentals I Certification Exam

4.5 
(12810 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
May 20, 2024Last update

Oracle 1Z0-051 Free Practice Questions

Q1. - (Topic 1) 

See the exhibit and examine the structure of the CUSTOMERS and GRADES tables: 

You need to display names and grades of customers who have the highest credit limit. 

Which two SQL statements would accomplish the task? (Choose two.) 

A. 

SELECT custname, grade 

FROM customers, grades 

WHERE (SELECT MAX(cust_credit_limit) 

FROM customers) BETWEEN startval and endval; 

B. 

SELECT custname, grade FROM customers, grades WHERE (SELECT MAX(cust_credit_limit) FROM customers) BETWEEN startval and endval AND cust_credit_limit BETWEEN startval AND endval; 

C. 

SELECT custname, grade 

FROM customers, grades 

WHERE cust_credit_limit = (SELECT MAX(cust_credit_limit) 

FROM customers) 

AND cust_credit_limit BETWEEN startval AND endval; 

D. 

SELECT custname, grade 

FROM customers , grades 

WHERE cust_credit_limit IN (SELECT MAX(cust_credit_limit) 

FROM customers) 

AND MAX(cust_credit_limit) BETWEEN startval AND endval; 

Answer: B,C 

Q2. - (Topic 2) 

View the Exhibit and examine the structure of CUSTOMERS and SALES tables. 

Evaluate the following SQL statement: 

UPDATE (SELECT prod_id, cust_id, quantity_sold, time_id 

FROM sales) 

SET time_id = '22-MAR-2007' 

WHERE cust_id = (SELECT cust_id 

FROM customers 

WHERE cust_last_name = 'Roberts' AND 

credit_limit = 600); 

Which statement is true regarding the execution of the above UPDATE statement? 

A. It would not execute because two tables cannot be used in a single UPDATE statement. 

B. It would not execute because the SELECT statement cannot be used in place of the table name. 

C. It would execute and restrict modifications to only the columns specified in the SELECT statement. 

D. It would not execute because a subquery cannot be used in the WHERE clause of an UPDATE statement. 

Answer:

Explanation: 

One UPDATE statement can change rows in only one table, but it can change any number of rows in that table. 

Q3. - (Topic 2) 

Examine the structure proposed for the TRANSACTIONS table: 

Which statements are true regarding the creation and storage of data in the above table structure? (Choose all that apply.) 

A. The CUST_STATUS column would give an error. 

B. The TRANS_VALIDITY column would give an error. 

C. The CUST_STATUS column would store exactly one character. 

D. The CUST_CREDIT_LIMIT column would not be able to store decimal values. 

E. The TRANS_VALIDITY column would have a maximum size of one character. 

F. The TRANS_DATE column would be able to store day, month, century, year, hour, minutes, seconds, and fractions of seconds. 

Answer: B,C 

Explanation: 

VARCHAR2(size)Variable-length character data (A maximum size must be specified: 

minimum size is 1; maximum size is 4,000.) 

CHAR [(size)] Fixed-length character data of length size bytes (Default and minimum size 

is 1; maximum size is 2,000.) 

NUMBER [(p,s)] Number having precision p and scale s (Precision is the total number of 

decimal digits and scale is the number of digits to the right of the decimal point; precision 

can range from 1 to 38, and scale can range from –84 to 127.) 

DATE Date and time values to the nearest second between January 1, 4712 B.C., and 

December 31, 9999 A.D. 

Q4. - (Topic 2) 

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_limit FROM orders o JOIN customers c USING (customer_id) WHERE o.order_total > c.credit_limit FOR UPDATE ORDER BY o.order_id; 

Which two statements are true regarding the outcome of the above query? (Choose two.) 

A. It locks all the rows that satisfy the condition in the statement. 

B. It locks only the columns that satisfy the condition in both the tables. 

C. The locks are released only when a COMMIT or ROLLBACK is issued. 

D. The locks are released after a DML statement is executed on the locked rows. 

Answer: A,C 

Explanation: 

FOR UPDATE Clause in a SELECT Statement 

Locks the rows in the EMPLOYEES table where job_id is SA_REP. 

Lock is released only when you issue a ROLLBACK or a COMMIT. 

If the SELECT statement attempts to lock a row that is locked by another user, the database waits until the row is available, and then returns the results of the SELECTstatement SELECT employee_id, salary, commission_pct, job_id FROM employees WHERE job_id = 'SA_REP' FOR UPDATE ORDER BY employee_id; 

Q5. - (Topic 1) 

When does a transaction complete? (Choose all that apply.) 

A. When a PL/SQL anonymous block is executed B. When a DELETE statement is executed 

C. When a data definition language statement is executed 

D. When a TRUNCATE statement is executed after the pending transaction 

E. When a ROLLBACK command is executed 

Answer: C,D,E 

Q6. - (Topic 1) 

Examine the structure of the EMPLOYEES and NEW_EMPLOYEES tables: 

Which MERGE statement is valid? 

A. 

MERGE INTO new_employees c USING employees e ON (c.employee_id = e.employee_id) WHEN MATCHED THEN UPDATE SET 

B. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN INSERT value S(e.employee_id, e.first_name ||', '||e.last_name); 

C. 

MERGE new_employees c USING employees e ON (c.employee_id = e.employee_id) WHEN EXISTS THEN UPDATE SET 

D. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN INSERT valueS(e.employee_id, e.first_name ||', '||e.last_name); 

E. 

MERGE INTO new_employees cUSING employees e ON (c.employee_id = e.employee_id) WHEN EXISTS THEN UPDATE SET 

F. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN INSERT value S(e.employee_id, e.first_name ||', '||e.last_name); 

G. 

MERGE new_employees c FROM employees e ON (c.employee_id = e.employee_id) WHEN MATCHED THEN UPDATE SET 

H. name = e.first_name ||','|| e.last_name WHEN NOT MATCHED THEN INSERT INTO new_employees valueS(e.employee_id, e.first_name ||', '||e.last_name); 

Answer:

Explanation: Explanation: this is the correct MERGE statement syntax 

Incorrect Answer: Bit should MERGE INTO table_name Cit should be WHEN MATCHED THEN Dit should MERGE INTO table_name Refer: Introduction to Oracle9i: SQL, Oracle University Study Guide, 8-29 

Q7. - (Topic 1) 

You want to create an ORD_DETAIL table to store details for an order placed having the following business requirement: 

1) The order ID will be unique and cannot have null values. 

2) The order date cannot have null values and the default should be the current date. 

3) The order amount should not be less than 50. 

4) The order status will have values either shipped or not shipped. 

5) The order payment mode should be cheque, credit card, or cash on delivery (COD). 

Which is the valid DDL statement for creating the ORD_DETAIL table? 

A. 

CREATE TABLE ord_details 

(ord_id NUMBER(2) CONSTRAINT ord_id_nn NOT NULL, 

ord_date DATE DEFAULT SYSDATE NOT NULL, 

ord_amount NUMBER(5, 2) CONSTRAINT ord_amount_min 

CHECK (ord_amount > 50), 

ord_status VARCHAR2(15) CONSTRAINT ord_status_chk 

CHECK (ord_status IN ('Shipped', 'Not Shipped')), 

ord_pay_mode VARCHAR2(15) CONSTRAINT ord_pay_chk 

CHECK (ord_pay_mode IN ('Cheque', 'Credit Card', 

'Cash On Delivery'))); 

B. 

CREATE TABLE ord_details 

(ord_id NUMBER(2) CONSTRAINT ord_id_uk UNIQUE NOT NULL, 

ord_date DATE DEFAULT SYSDATE NOT NULL, 

ord_amount NUMBER(5, 2) CONSTRAINT ord_amount_min 

CHECK (ord_amount > 50), 

ord_status VARCHAR2(15) CONSTRAINT ord_status_chk 

CHECK (ord_status IN ('Shipped', 'Not Shipped')), 

ord_pay_mode VARCHAR2(15) CONSTRAINT ord_pay_chk 

CHECK (ord_pay_mode IN ('Cheque', 'Credit Card', 

'Cash On Delivery'))); 

C. 

CREATE TABLE ord_details 

(ord_id NUMBER(2) CONSTRAINT ord_id_pk PRIMARY KEY, 

ord_date DATE DEFAULT SYSDATE NOT NULL, 

ord_amount NUMBER(5, 2) CONSTRAINT ord_amount_min 

CHECK (ord_amount >= 50), 

ord_status VARCHAR2(15) CONSTRAINT ord_status_chk 

CHECK (ord_status IN ('Shipped', 'Not Shipped')), 

ord_pay_mode VARCHAR2(15) CONSTRAINT ord_pay_chk 

CHECK (ord_pay_mode IN ('Cheque', 'Credit Card', 

'Cash On Delivery'))); 

D. 

CREATE TABLE ord_details 

(ord_id NUMBER(2), 

ord_date DATE NOT NULL DEFAULT SYSDATE, 

ord_amount NUMBER(5, 2) CONSTRAINT ord_amount_min 

CHECK (ord_amount >= 50), 

ord_status VARCHAR2(15) CONSTRAINT ord_status_chk 

CHECK (ord_status IN ('Shipped', 'Not Shipped')), 

ord_pay_mode VARCHAR2(15) CONSTRAINT ord_pay_chk 

CHECK (ord_pay_mode IN ('Cheque', 'Credit Card', 

'Cash On Delivery'))); 

Answer:

Q8. - (Topic 2) 

View the Exhibit and examine the data in the PROMOTIONS table. 

PROMO_BEGIN_DATE is stored in the default date format, dd-mon-rr. 

You need to produce a report that provides the name, cost, and start date of all promos in the POST category that were launched before January 1, 2000. 

Which SQL statement would you use? 

A. SELECT promo_name, promo_cost, promo_begin_date FROM promotions WHERE promo_category = 'post' AND promo_begin_date < '01-01-00' 

B. SELECT promo_name, promo_cost, promo_begin_date FROM promotions WHERE promo_cost LIKE 'post%' AND promo_begin_date < '01-01-2000' 

C. SELECT promo_name, promo_cost, promo_begin_date FROM promotions WHERE promo_category LIKE 'P%' AND promo_begin_date < '1-JANUARY-00' 

D. SELECT promo_name, promo_cost, promo_begin_date FROM promotions WHERE promo_category LIKE '%post%' AND promo_begin_date < '1-JAN-00' 

Answer:

Q9. - (Topic 1) 

Which two statements are true regarding constraints? (Choose two.) 

A. A constraint can be disabled even if the constraint column contains data 

B. A constraint is enforced only for the INSERT operation on a table 

C. A foreign key cannot contain NULL values 

D. All constraints can be defined at the column level as well as the table level 

E. A columns with the UNIQUE constraint can contain NULL values 

Answer: A,E 

Q10. - (Topic 2) 

Examine the data in the PROMO_BEGIN_DATE column of the PROMOTIONS table: 

PROMO_BEGIN _DATE 

04-jan-00 

10-jan-00 

15-dec-99 

18-oct-98 

22-aug-99 

You want to display the number of promotions started in 1999 and 2000. 

Which query gives the correct output? 

A. 

SELECT SUM(DECODE(SUBSTR(promo_begin_date,8),'00',1,0)) "2000", 

SUM(DECODE(SUBSTR 

(promo_begin_date,8),'99',1,0)) "1999" 

FROM promotions; 

B. 

SELECT SUM(CASE TO_CHAR(promo_begin_date,'yyyy') WHEN '99' THEN 1 ELSE 0 

END) "1999",SUM(CASE TO_CHAR(promo_begin_date,'yyyy') WHEN '00' THEN 1 ELSE 

0 END) "2000" 

FROM promotions; 

C. 

SELECT COUNT(CASE TO_CHAR(promo_begin_date,'yyyy') WHEN '99' THEN 1 ELSE 0 END) "1999", COUNT(CASE TO_CHAR(promo_begin_date,'yyyy') WHEN '00' THEN 1 ELSE 0 END) "2000" FROM promotions; 

D. 

SELECT COUNT(DECODE(SUBSTR(TO_CHAR(promo_begin_date,'yyyy'), 8), '1999', 1, 

0)) "1999", COUNT(DECODE(SUBSTR(TO_CHAR(promo_begin_date,'yyyy'), 8),'2000', 1, 

0)) "2000" 

FROM promotions; 

Answer:

Q11. - (Topic 1) 

Evaluate the following SQL statement: 

SQL> SELECT cust_id, cust_last_name "Last Name" 

FROM customers 

WHERE country_id = 10 

UNION 

SELECT cust_id CUST_NO, cust_last_name 

FROM customers 

WHERE country_id = 30; 

Which ORDER BY clause are valid for the above query? (Choose all that apply.) 

A. ORDER BY 2,1 

B. ORDER BY CUST_NO 

C. ORDER BY 2,cust_id 

D. ORDER BY "CUST_NO" 

E. ORDER BY "Last Name" 

Answer: A,C,E 

Explanation: 

Using the ORDER BY Clause in Set Operations 

-The ORDER BY clause can appear only once at the end of the compound query. 

-Component queries cannot have individual ORDER BY clauses. 

-The ORDER BY clause recognizes only the columns of the first SELECT query. 

-By default, the first column of the first SELECT query is used to sort the output in an ascending order. 

Q12. - (Topic 1) 

You work as a database administrator at ABC.com. You study the exhibit carefully and examine the structure of CUSTOMRS AND SALES tables. 

Evaluate the following SQL statement: Exhibit: 

Which statement is true regarding the execution of the above UPDATE statement? 

A. It would execute and restrict modifications to only the column specified in the SELECT statement 

B. It would not execute because two tables cannot be used in a single UPDATE statement 

C. It would not execute because a sub query cannot be used in the WHERE clause of an UPDATE statement 

D. It would not execute because the SELECT statement cannot be used in place of the table name 

Answer:

Q13. - (Topic 2) 

You issue the following query: 

SQL> SELECT AVG(MAX(qty)) 

FROM ord_items 

GROUP BY item_no 

HAVING AVG(MAX(qty))>50; 

Which statement is true regarding the outcome of this query? 

A. It executes successfully and gives the correct output. 

B. It gives an error because the HAVING clause is not valid. 

C. It executes successfully but does not give the correct output. 

D. It gives an error because the GROUP BY expression is not valid. 

Answer:

Explanation: 

The general form of the SELECT statement is further enhanced by the addition of the 

HAVING clause and becomes: 

SELECT column|expression|group_function(column|expression [alias]),…} 

FROM table 

[WHERE condition(s)] 

[GROUP BY {col(s)|expr}] 

[HAVING group_condition(s)] 

[ORDER BY {col(s)|expr|numeric_pos} [ASC|DESC] [NULLS FIRST|LAST]]; 

An important difference between the HAVING clause and the other SELECT statement 

clauses is that it may only be specified if a GROUP BY clause is present. This dependency 

is sensible since group-level rows must exist before they can be restricted. The HAVING 

clause can occur before the GROUP BY clause in the SELECT statement. However, it is 

more common to place the HAVING clause after the GROUP BY clause. All grouping is 

performed and group functions are executed prior to evaluating the HAVING clause. 

Q14. - (Topic 1) 

View the Exhibit and examine the structure of the PROMOTIONS table. Using the PROMOTIONS table, you need to display the names of all promos done after January 1, 2001, starting with the latest promo. Which query would give the required result? (Choose all that apply.) 

A. SELECT promo_name, promo_begin_date FROM promotions 

WHERE promo_begiii_date > '01-JAN-01' ORDER BY 2 DESC; 

B. SELECT promo_name. promo_begiii_date FROM promotions 

WHERE promo_begin_date > '01-JAN-01' ORDER BY promo_name DESC: 

C. SELECT promo_name. promo_begin_date FROM promotions 

WHERE promo_begin_date > '01-JAN-01' ORDER BY 1DESC: 

D. SELECT promo_name, promo_begin_date "START DATE" FROM promotions 

WHERE promo_begin_date > '01-JAN-01' ORDER BY "START DATE" DESC; 

Answer: A,D 

Q15. - (Topic 1) 

View the Exhibit and examine the structure of the CUSTOMERS table. Evaluate the query statement: 

What would be the outcome of the above statement? 

A. It executes successfully. 

B. It produces an error because the condition on CUST_LAST_NAME is invalid. 

C. It executes successfully only if the CUST_CREDIT_LIMIT column does not contain any null values. 

D. It produces an error because the AND operator cannot be used to combine multiple BETWEEN clauses. 

Answer:

START 1Z0-051 EXAM