Logo

Mysql Questions Set 10:

Quiz Mode

  Hexadecimal numbers cannot be used in scientific notation. 

1
2

Solution:

  Which Keyword is used to remove duplicate rows in result set?
 

1
2
3
4

Solution:

In MyISAM tables, when a table is emptied with the TRUNCATE TABLE, the counter begins at _____________ 

1
2
3
4

Solution:

Which storage engine enables to access tables from a MySQL server managed by another server? 

1
2
3
4

Solution:

 

What is xyz in the following statement?

SELECT * FROM my_table WHERE MATCH(abc) AGAINST('xyz');

1
2
3
4

Solution:

 In which mode of search is the search string parsed into words and the search looks for rows? 

1
2
3
4

Solution:

 

What is ghi in the following statement?

CREATE TRIGGER abc (...) (...) ON def FOR EACH ROW ghi;

1
2
3
4

Solution:

 Which option is used in mysqldump to make all tables in the destination databases to use a different storage engine? 

1
2
3
4

Solution:

 

What will be the output of the following query?


 SELECT * FROM employee WHERE lname LIKE ‘F%’ OR lname LIKE ‘%T’; 

1
2
3
4

Solution:

 

What will be the output of the query given below?


 SELECT * FROM employee WHERE (title=’HEAD TELLER’) AND (start_date=2013-01-24); 

1
2
3
4

Solution: