Q.1.
Which of the following is not a keyword of MYSQL?
Q.2.
Which one of the following sorts rows in SQL?
Q.3.
Which SQL function is used to find the average value of any column?
Q.4.
Which is not an aggregate function?
Q.5.
Which operator is used to match column values against a list of values?
Q.6.
Write a query to display first_name and last_name of all employees who have their first_name starting with 'A'.
Q.7.
The maximum length of char data type is
Q.8.
In MySQL, which command is used to modify the table values
Q.9.
Which function will be used to remove only the trailing spaces from a string?
Q.10.
Which is the default order of sort in ORDER BY clause?
Q.11.
The updated MySQL extension with PHP5 is typically referred to as
Q.12.
Which method returns the error code generated from the execution of the last MySQL function?
Q.13.
Which one of the following methods can be used to diagnose and display info about a MySQL connection error?
Q.14.
The “father” of MySQL is ______.
Q.15.
Which of the following is not a feature of MySQL?
Q.16.
"CREATE TABLE" statement falls to which category of comand of MYSQL?
Q.17.
If I want to show all data in a MySQL table, I would use
Q.18.
A relational database ___________ is a data structure used to store and organize information.
Q.19.
Which of the following query is correct to get Current Date from Query?A. SELECT DATE ( NOW() ) as today;B. SELECT DATE_FORMAT( NOW( ) , '%Y-%m-%d' ) as today;
Q.20.
Which clause is used to “Filters out unwanted data”?