1.
Which of the following is used to delete an entire MySQL database?
2.

In NOSQL, which of the following commands is used to create a database, namely Company?

3.

Consider the following data:

student_id     student_name
     1           Bob
     2           Adam
What value will the following MySQL query return?

 

  Select count(*) from employees

 
4.

What is the output of the following MySQL query:

    SELECT CEIL(-9.43);
5.

In MySQL, the SELECT command without the WHERE clause returns _________________________________________________.

6.
What is the default port used for a MySQL server?
7.
Which of the following MySQL queries is used to select all the teams that won 1, 3, 5, or 7 games?
8.

In MySQL, which of the following queries returns all the indices that are defined for a table, namely emp?

9.

In MySQL, which of the following is used to display all the data in the field, namely emp, from the table employee?

10.

In MySQL, which of the following queries changes the table name from QA to TESTING?