| Exam Code/Number: | 1z1-061Join the discussion |
| Exam Name: | Oracle Database 12c: SQL Fundamentals |
| Certification: | Oracle |
| Question Number: | 340 |
| Publish Date: | Dec 09, 2025 |
|
Rating
100%
|
|
See the Exhibit and examine the structure of ORD table:
Exhibit:
Evaluate the following SQL statements that are executed in a user session in the specified order:
CREATE SEQUENCE ord_seq;
SELECT ord_seq.nextval
FROM dual;
INSERT INTO ord
VALUES (ord_seq.CURRVAL, '25-jan-2007, 101);
UPDATE ord
SET ord_no= ord_seq.NEXTVAL
WHERE cust_id =101;
What would be the outcome of the above statements?
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 date type column called DOB?
The customers table has the following structure:
You need to write a query that does the following tasks:
1. Display the first name and tax amount of the customers. Tax is 5% of their credit limit.
2. Only those customers whose income level has a value should be considered.
3. Customers whose tax amount is null should not be considered.
Which statement accomplishes all the required tasks?
View the Exhibit and examine the structure of CUSTOMERS table.
Evaluate the following query:
Which statement is true regarding the above query?
Which is an iSQL*Plus command?