ORCL - Mysql Explorer Exam
ORCL - Mysql Explorer Exam
ORCL - Mysql Explorer Exam
Which query returns the countries with a population greater than a million but less than two
million?
SELECT Name FROM country WHERE Population BETWEEN 1000000 AND 2000000;
SELECT Name FROM country WHERE Population > 1000000 AND Population < 2000000;
SELECT Name FROM country WHERE Population >= 1000000 AND Population <= 2000000;
SELECT Name FROM country WHERE Population > 1000000 AND < 2000000;
In mysql client, which character sequence is used to display the query results in vertical format?
\v
\G
\g
\t
The following query causes an error: " SELECT FROM country; " How could the error message be
displayed again? (Choose three)
8888
1521
3306
3308
Which query lists the countries with constitutional monarchies in Europe and Oceania
continents? (Choose two)
SQL Development
Access to MySQL Utilities
Server Administration
Database Migration
MySQL Installation
Data Modeling
Which connection methods are supported on Windows? (Choose three)
Shared Pipe
UNIX Socket File
TCP/IP
Shared Memory
mysql.server
mysqld
mysql
mysqladmin
mysqld_multi
5 / 7;
SELECT 5 / 7 FROM mysql;
It's not possible.
SELECT 5 / 7;
Connector/Java
Connector/J
Connector/ODBC
Connector/JDBC
Which of the following queries will list the top 10 countries with the largest population?
\C
\c
\e
\q
What is the account available when installing MySQL server using RPM packages in Linux?
oracle
admin
root
user
Which command changes the prompt to "(user@host) [database]> " in mysql client?
The demo local account needs to change its password. Which commands are valid for that?
(Choose two)