Is the following statement true or false? If the MySQL server is started with --sql- mode=IGNORE_SPACE, all
function names are treated as reserved words
The table user has the following structure and contents.
mysql> DESCRIBE user; SELECT * FROM user;
'NULL' in the output is the NULL value, not the character string 'NULL'.
How many rows will the following query return? SELECT name, telephone FROM user WHERE telephone=''
The table t has a column c with following contents:
mysql> SELECT c FROM t;
- 100% Pass Guarantee 16 If c is a CHAR column that has the case-insensitive latin1_swedish_ci collation
what will be the output of the following SQL statement?
SELECT c, COUNT(*) from t GROUP BY c
str is a multi-byte character string which contains five two-byte characters. What will be the result of the
following SQL statement? SELECT LENGTH(str), CHAR_LENGTH(str)