Weekend Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Note! Following 1z0-882 Exam is Retired now. Please select the alternative replacement for your Exam Certification.

Verified By IT Certified Experts

CertsTopics.com Certified Safe Files

Up-To-Date Exam Study Material

99.5% High Success Pass Rate

100% Accurate Answers

Instant Downloads

Exam Questions And Answers PDF

Try Demo Before You Buy

Certification Exams with Helpful Questions And Answers

Oracle Certified Professional, MySQL 5.6 Developer Questions and Answers

Question 1

You attempt to create a temporary table by using the following statement:

CREATE TEMPORARY TABLE employeesMAIN

SELECT * FROM employees1

UNION ALL

SELECT * FROM employees2;

What is the result?

Options:

A.

An error is produced because you cannot create a TEMPORARY TABLE with a UNION.

B.

The employees common to both tables exist in employees MAIN.

C.

A unique list of employees exist in employeesMAIN.

D.

All rows from both tables exist in employeesMAIN.

Buy Now
Question 2

You started a MySQL command –line session with sq1_ mode (empty), and created the person table with the structure:

Mysql> DESC person;

You issue:

INSERT INTO person VALUES (‘casper’, ‘undefined’)

What is the effect?

Options:

A.

‘Casper’ and ‘ undefined values are inserted into the ‘name’ and gender’ column.

B.

The server returns an error indicating that ‘undefined’ cannot be inserted into a column of ENUM type

C.

The server returns a warning and the empty string is inserted to the ‘gender’ column.

D.

The server returns a warning and the first specified value ,”male” is inserted to the gender column.

Question 3

The people table contains the data as shown:

Which two statements return two rows each?

Options:

A.

SELECT DISTINCT last_name, first_name FROM people

B.

SELECT 1,2 FROM people GROUP BY last_name

C.

SELECT first_name, last _name FROM people WHERE age LIKE ‘2’

D.

SELECT 1, 2 FROM people WHERE last _name =’smith’

E.

SELECT first _name, last_name FROM people LIMIT 1, 2