✅ C.
sql
Copy
Edit
INSERT INTO employees
(employee_id, salary, first_name, hiredate, last_name)
VALUES (101, 12100, 'John', SYSDATE, 'Smith');
This works: all required columns (EMPLOYEE_ID, LAST_NAME) are provided.
The column order doesn’t have to match the table, as long as it's declared.
DEPARTMENT_ID is nullable, so it's fine to omit.
✅ E.
sql
Copy
Edit
INSERT INTO employees
SELECT 101, 'John', 'Smith', 12000, (SELECT SYSDATE FROM dual), 10 FROM dual;
C: Explicitly matches columns with their values.
E: Uses a SELECT query to populate all columns correctly.
F: Provides all values in the correct order.
https://www.techonthenet.com/oracle/insert.php
according to that link You can omit a column from the Oracle INSERT statement if the column allows NULL values. so answer A is correct
C E are correct. F would be ok whith an space between ' '.
If you copy and paste the exact alternative from here, it works, but I imagine that the exam doesn't have that space and that's why the're only two correct options.
This section is not available anymore. Please use the main Exam Page.1z0-071 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Babi265
Highly Voted 2 years, 4 months agoRenad_16
Highly Voted 2 years, 4 months ago826cb95
Most Recent 3 days, 23 hours agoThameur01
4 months agoArslanAltaf
1 year agousarovsherzod68
1 year, 1 month agoyaya32
1 year, 3 months agolucemqy
1 year, 5 months agolucemqy
1 year, 5 months agolucemqy
1 year, 5 months agojm9999
1 year, 7 months agoTheOracleWasTaken
1 year, 9 months agozouve
1 year, 10 months agozouve
1 year, 10 months agoNelita
1 year, 11 months agoCyberP
1 year, 11 months agoCyberP
1 year, 11 months agoTheOracleWasTaken
1 year, 9 months agoshotcom
1 year, 7 months agoJ4vi
1 year, 11 months agokuff
1 year, 12 months ago