1Z0-061 Dumps

1Z0-061 Free Practice Test

Oracle 1Z0-061: Oracle Database 12c SQL Fundamentals

QUESTION 26

- (Topic 4)
What is true about updates through a view?

Correct Answer: A

QUESTION 27

- (Topic 2)
Which statement correctly describes SQL and /SQL*Plus?

Correct Answer: A

QUESTION 28

- (Topic 3)
Which two statements are true regarding the USING clause in table joins? (Choose two.)

Correct Answer: BD
NATURAL JOIN operation
A NATURAL JOIN is a JOIN operation that creates an implicit join clause for you based on the common columns in the two tables being joined. Common columns are columns that have the same name in both tables.
If the SELECT statement in which the NATURAL JOIN operation appears has an asterisk (*) in the select list, the asterisk will be expanded to the following list of columns (in this order):
All the common columns
Every column in the first (left) table that is not a common column Every column in the second (right) table that is not a common column
An asterisk qualified by a table name (for example, COUNTRIES.*) will be expanded to every column of that table that is not a common column.
If a common column is referenced without being qualified by a table name, the column reference points to the column in the first (left) table if the join is an INNER JOIN or a LEFT OUTER JOIN. If it is a RIGHT OUTER JOIN, unqualified references to a common column point to the column in the second (right) table.
Syntax
TableExpression NATURAL [ { LEFT | RIGHT } [ OUTER ] | INNER ] JOIN {
TableViewOrFunctionExpression | ( TableExpression ) }
Examples
If the tables COUNTRIES and CITIES have two common columns named COUNTRY and COUNTRY_ISO_CODE, the following two SELECT statements are equivalent:
SELECT * FROM COUNTRIES NATURAL JOIN CITIES SELECT * FROM COUNTRIES JOIN CITIES
USING (COUNTRY, COUNTRY_ISO_CODE)

QUESTION 29

- (Topic 2)
Which statement is true regarding synonyms?

Correct Answer: D

QUESTION 30

- (Topic 1)
View the Exhibit and examine the data in the PROMO_NAME and PROMO_END_DATE columns of the promotions table, and the required output format.
< ><>>< >

Correct Answer: CD