Choose a topic to test your knowledge and improve your SQL skills
Which MySQL statement is used to find out which character sets are available?
Which collations does this MySQL statement list?
Which statement is used to show the server’s current character set and collation settings?
What does UTF stand for int utf8?
Prior to MySQL 6.0, utf8 was ___________
Post MySQL 6.0, utf8 was ___________
What is generally used as a synonym for CHARACTER SET?
Which statement is used to select a default database?
Which keyword is the synonym for DATABASE?
Which keyword is used to create a database?
The file created by the server to store the database attributes is __________
To create a database only if it doesn’t already exist, which clause is used?
MySQL stores the database character set and collation attributes in the file _________
Which statement is used to see the definition for an existing database?
Which statement makes changes to the database’s global attributes?
Which statement is used to remove indexes on tables?
Which storage engine is not available in MySQL 5.0?
The default storage engine used is ____________
What is the name of the format file for a table named my_tbl?
Which keyword is used to create a table as a temporary copy of itself?
Which storage engine enables to access tables from a MySQL server managed by another server?
The default index type for MEMORY tables is __________
The statement to change the table name is __________
The general term for information about databases and the objects in MySQL is _________
Which statement is used to determine the storage engine for individual tables?
Which disk data does FILES table in INFORMATION_SCHEMA store?
The information about table index characteristics is stored in which table of INFORMATION_SCHEMA?
Which table in INFORMATION_SCHEMA stores information about storage engines and server plugins?
Which table stores information about the threads executing within the server?
The command which lists databases managed by the server is _____________
The option in mysqlshow to show information about indexes in a table is _________
SELECT select_list FROM table_list WHERE row_constraint GROUP BY grouping_columns; Which of these is not optional?
The join where all possible row combinations are produced is called _________
The clause that filters JOIN results is called _________
CROSS JOIN and JOIN are similar to __________
The left and right joins are also known as __________
What is joining a table to itself called?
In which join all the rows from the left table appear in the output irrespective of the content of the other table?
The join in which all the rows from the right table appear in the output irrespective of the content of the other table is ___________
The facility that allows nesting one select statement into another is called __________
Which subquery returns a single value?
Which operators are used when a subquery returns multiple rows to be evaluated in comparison to the outer query?
The ALL subquery performs which operation?
Which of these operators perform similar operations like ALL and ANY?
Which operators test whether a subquery returns any rows?
Which subquery cannot be executed by itself as a separate statement?
Which of these operators does not perform relative-value comparisons?
To combine multiple retrievals, we write several SELECT statements and put the keyword between them. What is the keyword?
What is ‘xyz’ in the following SQL statement?
Which keyword used with UNION does not retain duplicate rows?