Which is an alternative word for DATABASE?
What can be used to make changes to the DB's global attributes?
The number of legal hexadecimal values among 0x0b, 0x0B, 0X0b and 0X0B is ___________
Which system variable in MySQL server enables to configure the SQL mode?
What is abc in the following MySQL statement?
DECLARE abc HANDLER FOR def ghi;
Choose the correct option Which is used to delete all rows in a table without having the action logged?
What is the function of Ctrl-_ in MySQL input editor?
What may be the results of the following queries if column 'col' is declared as INTEGER?
If emp_id contain the following set {9, 7, 6, 4, 3, 1, 2}, what will be the output on execution of the given query?
SELECT emp_id
FROM person
ORDER BY emp_id ASC;
What will be the output of the query given below?
SELECT * FROM employee WHERE (title=’HEAD TELLER’) OR (start_date=2013-01-24);