Mysql Compound Statements
- A synonym for CHARACTER SET is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
‘CHARACTER SET’ can be abbreviated into ‘CHARSET’ and can be used in the same contexts and statements where ‘CHARACTER SET’ is used. ‘charset’ is the server-supported character set.
- The maximum collations a character set can have is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The MySQL server allows simultaneous use of multiple character sets. A given character set is allowed to have one or more collations. It can be chosen according to the need of the database.
- The binary protocol is more difficult to use.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The binary protocol is more difficult to use because more setup is necessary for transmitting and receiving data values. The binary protocol does not support all statements like ‘USE’.
- The binary protocol does not support all statements.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The binary protocol is more difficult to use because more setup is necessary for transmitting and receiving data values. The binary protocol does not support all statements, for example, ‘USE’.
- To how many of the following does the prepared-statement API apply to?
CREATE TABLE, DELETE, DO, INSERT
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
All statements cannot be prepared. The prepared-statement API applies to the statements: CREATE TABLE, DELETE, DO, INSERT, REPLACE, SELECT, SET, UPDATE and most variations of SHOW.