| Exam Code/Number: | 1z1-882Join the discussion |
| Exam Name: | Oracle Certified Professional, MySQL 5.6 Developer |
| Certification: | Oracle |
| Question Number: | 100 |
| Publish Date: | Dec 17, 2025 |
|
Rating
100%
|
|
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?
When executing a stored routine, how is the SQL_MODE determined?
The tab-delimited file"/tmp/people,txt contains:
1636 Carsten Pederson Denmark
4672 Kai Voigt Germany
4628 Max Mether France
This is the structure of the people table:
Mysq1> DESCRIBE people;
Which statement will load the first and last names into the Names column and the country into the country column?
You want to use the SHA -256 Authentication plugin with Connector/J.
Which two parameter settings achieve this?
In the office table, the city column is structured as shown:
Mysql> show columns from office like 'city'\G
---------------------------------------------------1. row ---------------------__________________
Field: city
Type: enum('paris'.'Amsterdam'.'New York'.'Tokyo')
Null: Yes
Key:
Default:NULL
Extra:
Consider the output of the SELECT query executed on the office table:
Mysql> SELECT DISTINCT city FROM office ORDER BY city:
If the query is written as:
SELECT DISTINCT city FROM office ORDER BY CAST(city AS CHAR)
In what order are the rows returned?