Which Numeric Data type has the largest range?
A. Mediumint
B. Smallint
C. Int
D. Tinyint
Select an option to see the answer and solution.
If the operands are non binary strings, LIKE compares them according to their collation.
Select an option to see the answer and solution.
Which clause is used to determine "which column to include in the query sets"?
A. SELECT
B. FROM
C. WHERE
D. ORDER BY
Select an option to see the answer and solution.
Which myisamchk variable represents the size of buffer used to hold index blocks?
A. key_buffer_size
B. read_buffer_size
C. sort_buffer_size
D. write_buffer_size
Select an option to see the answer and solution.
Which command is used in Mysql command line tool to return to window command shell?
A. exit;
B. quit;
C. both exit; and quit;
D. only exit;
Select an option to see the answer and solution.
Select the sequence for how the query mechanism works?
A. Authentication-> DDL->DML->query optimizer->output
B. DDL->DML->query optimizer-> Authentication->output
C. DML->query optimizer-> Authentication-> DDL-> output
D. All of the mentioned
Select an option to see the answer and solution.
Which key declares that an index in one table is related to that in another?
A. primary
B. secondary
C. foreign
D. cross
Select an option to see the answer and solution.
The statement that alters an existing event to have the given definition is . . . . . . . .
A. ALTER EVENT
B. ALTER DATABASE
C. ALTER FUNCTION
D. None of the above
Select an option to see the answer and solution.
In 'mysqldump' which option is used to make all tables in the destination databases to use a different storage engine?
A. -next-storage-engine
B. -new-storage-engine
C. -clear-storage-engine
D. -get-storage-engine
Select an option to see the answer and solution.
Which one is the correct declaration for choosing the character set other than default?
A. Varchar(20) character set utf8;
B. Varchar(20);
C. Varchar(20) character set;
D. None of the mentioned
Select an option to see the answer and solution.
fetchrow_hashref() returns reference to hash of row values keyed by . . . . . . . .
A. row name
B. column name
C. table name
D. database name
Select an option to see the answer and solution.
In which file are the statements entered in 'mysql' saved?
A. .mysql_queries
B. .queries
C. .mysql_history
D. .history
Select an option to see the answer and solution.
Suppose tbl_1 is a table consisting of 8 rows and tbl_2 is a table consisting of 6 rows, the number of combinations through which the search is performed is . . . . . . .
SELECT tbl_1.i1, tbl_2.i2
FROM tbl_1 INNER JOIN tbl_2
WHERE tbl_1.i1 = tbl_2.i2;Select an option to see the answer and solution.
Which table lists the accounts and the databases for which the privileges are provided?
A. user
B. db
C. tables_priv
D. procs_priv
Select an option to see the answer and solution.
What is the shebang line?
Select an option to see the answer and solution.
What can be used interchangeably with MYSQL_VERSION_ID?
A. LIBMYSQL_VERSION
B. LIBMYSQL_VERSION_ID
C. MYSQL_VERSION_ID
D. MYSQL_ID
Select an option to see the answer and solution.
The number of tables among the following for which HIGH_PRIORITY have an effect are . . . . . . . .
MyISAM, MEMORY, MERGESelect an option to see the answer and solution.
The MySQL clients are linked with . . . . . . . .
A. -lmysqlclient
B. -cmysqlclient
C. -dmysqlclient
D. -vmysqlclient
Select an option to see the answer and solution.
CGI stands for . . . . . . . .
A. Computer Gateway Interface
B. Common Gateway Interface
C. Computer Generated Interface
D. Common Generated Interface
Select an option to see the answer and solution.
There can be more than one column per table with the AUTO_INCREMENT attribute.
Select an option to see the answer and solution.