Assuming that the account 'joe'@'%' does not already exist on the server, executing the
statement
mysql> CREATE USER 'joe'@'%' IDENTIFIED BY 'sakila'
will have the following consequences:
Consider the following:
mysql> EXPLAIN SELECT Name FROM Country WHERE Code = 'CAN'\G
************************** 1. Row***************************
id: 1
select_type: SIMPLE
table: Country
type: const
possible_keys: PRIMARY
key: PRIMARY
key_len: 3
ref: const
rows: 1
Extra:
Which of the following best describes the meaning of the value of the type column?
What is the effect of using WITH GRANT OPTION when executing the following statement?
GRANT SELECT, UPDATE, DELETE ON world.* TO 'joe'@'example.com' IDENTIFIED BY
'Sakila' WITH GRANT OPTION