Logo

Mysql Questions Set 22:

Quiz Mode

Is Unicode support provided in MySQL? 

1
2

Solution:

A view can be deleted using the command __________ 

1
2
3
4

Solution:

The default index type for MEMORY tables is __________ 

1
2
3
4

Solution:

Which operators test whether a subquery returns any rows? 

1
2
3
4

Solution:

The system variable in MySQL server that enables to configure the SQL mode is __________ 

1
2
3
4

Solution:

How to establish a connection between a database and a server using PHP?

1
2
3
4

Solution:

For the same input parameters, if the stored function returns the same result, it is called _____________ 

1
2
3
4

Solution:

 

Is there any error in the following query?


 SELECT emp_id, title, start_date, fname, fed_id FROM person ORDER BY 2, 5; 

1
2
3
4

Solution:

 

Is there any error in the following query?


 SELECT emp_id, title, start_date, fname, fed_id FROM person ORDER BY LEFT (fed_id, 3); 

1
2
3
4

Solution:

 

What will be the output of a query given below?


 

What will be the output of a query given below?


 SELECT *  FROM person; 

1
2
3
4

Solution: