Mysql Compound Statements


  1. A synonym for CHARACTER SET is ______________.











  1. 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.


  1. The maximum collations a character set can have is ______________.











  1. 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.



  1. The binary protocol is more difficult to use.











  1. 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’.


  1. The binary protocol does not support all statements.











  1. 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’.



  1. To how many of the following does the prepared-statement API apply to?
    CREATE TABLE, DELETE, DO, INSERT











  1. 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.