The account 'ulf'@'localhost' has previously been created with the statement
GRANT ALL PRIVILEGES ON *.* TO 'ulf'@'localhost' IDENTIFIED BY 'w01f'
This account should no longer be used, so you issue the following command:
REVOKE ALL PRIVILEGES ON *.* FROM 'ulf'@'localhost'
After executing this statement, you inspect the server and find that no clients are
connected using that account. However, the next day you notice that the account 'ulf'@'localhost'
is indeed connected to the server. Why is it still possible for the account 'ulf'@'localhost' to
connect to the server?
Given the following MyISAM table structure:
mysql> desc city;
+-------------+----------+------+-----+---------+---------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+----------+------+-----+---------+---------------+
| ID | int(11) | | PRI | NULL | auto_increment|
| Name | char(35) | | | | |
| CountryCode | char(3) | | | | |
| District | char(20) | | | | |
| Population | int(11) | | MUL | 0 | |
+-------------+----------+------+-----+---------+---------------+
and the following SQL statement:
SELECT Population
FROM city
WHERE Population = 10000
ORDER BY Population
LIMIT 5;
Which of the following statements best describes how MySQL optimizer executes the query?
As an administrator, you attempt to create the account 'joe'@'example.com' with the following
statement: GRANT SELECT, UPDATE, DELETE ON world.* TO 'joe'@'example.com' Which of
the following best describe the effects of issuing this statement?