Database - Sql Test

Test Instructions :

1. The Test is 1hr duration.
2. The Test Paper consists of 30 questions. The maximum marks are 30.
3. All the questions are multiple choice question type with three options for each question.
4. Out of the three options given for each question, only one option is the correct answer.
5. Each question is allotted 1 mark for each correct response.
6. 0.25 will be deducted for incorrect response of each question.
Start Test

   Time Left : 00 : 30    : 00

Which of these commands will delete a table called XXX if you have appropriate authority:

  

  

  

  

USE keyword is used to select a ___________

  

  

  

  

Enum values are stored according to their index numbers

  

  

Use the .............. to delete the data inside the table, and not the table itself?

  

  

  

  

A SELECT command without a WHERE clause returns?

  

  

  

  

How much character are allowed to create database name?

  

  

  

  

Which SQL statement is used to return only different values?

  

  

  

  

The “Mysql command line tool” formats are bounded by

  

  

  

  

Which command is used for showing current date and time in Mysql command line tool?

  

  

  

  

With SQL, how do you select a column named "FirstName" from a table named "Persons"?

  

  

  

How many distinct, different values can you hold in an enum field?

  

  

  

  

One of the early proponents of relational database who laid down many of the principles we use to this day was:

  

  

  

  

  

What MySQL property is used to create a surrogate key in MySQL?

  

  

  

  

Which SQL keyword is used to sort the result-set?

  

  

  

  

Which function used to get the current time in mysql?

  

  

  

When do we use a HAVING clause?

  

  

  

  

How to view all Triggers in MySQL?

  

  

  

  

Which of the following is not an SQL aggregate function?

  

  

  

  

  

MySQL runs on which operating systems?

  

  

  

  

Which of the following is NOT available in MySQL?

  

  

  

  

Which SQL statement is used to extract data from a database?

  

  

  

  

  

If an ENUM column is declared NOT NULL, its default value is the first element of the list of allowed values.

  

  

  

  

A view is nothing but a ________ table or a stored query

  

  

  

  

What is DCL?

  

  

  

  

How do I find out all databases starting with ‘test to which I have access to?

  

  

  

  

Which SQL statement is used to delete data from a database?

  

  

  

  

MySQL Access security is controlled through?

  

  

  

  

Can I call a trigger directly called from an application?

  

  

MySql | Which of the following is available in MySQL:

  

  

  

  

  

Commands passed to the MySQL daemon are written in.

  

  

  

  

SQL is not case sensitive. SELECT is the same as select.

  

  

With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?

  

  

  

  

MySQL comes with as standard with client libraries for:

  

  

  

  

What does the DESC keyword do in the following query? SELECT * FROM MY_TABLE WHERE ID > 0 ORDER BY ID, NAME DESC

  

  

  

  

  

If you want to undo a GRANT, you should use

  

  

  

  

  

What does SQL stand for?

  

  

  

  

With SQL, how do you select all the records from a table named "Persons" where the "FirstName" is "Aru" and the "LastName" is "Sum"?

  

  

  

  

Which of these is a valid call to a function (watch the spaces carefully!)

  

  

  

  

An outer join requires each record in the two joined tables to have a matching record.

  

  

  

  

The ............. statement is used to delete a table.

  

  

  

  

With SQL, how do you select all the columns from a table named "Persons"?

  

  

  

  

Which of the following file extension is a valid MyISAM file extension?

  

  

  

  

Which of the following is not a MySQL Operator?

  

  

  

  

Which of the following is the correct SQL statement to use to remove rows from a table?

  

  

  

  

What MySQL property is used to create a surrogate key in MySQL?

  

  

  

  

How is structure of a table got in MySQL?

  

  

  

  

With SQL, how can you delete the records where the "FirstName" is "Peter" in the Persons Table?

  

  

  

Can DISTINCT command be used for more than one column?

  

  

Which of the following is not an SQL aggregate function?

  

  

  

  

  

What is Row?

  

  

  

  

Internally information is held in tables. Which of these is NOT a valid format:

  

  

  

  

  

Which of the following can add a row to a table?

  

  

  

  

Can I define multiple unique constraints on a table?

  

  

To use MySQL on your computer, you'll need?

  

  

  

  

Given an employees table as follows:   emp_id emp_name 1 Brush 2 Jerrin  what value will be return by below query ? Select count(*) from employees  

  

  

  

  

With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?

  

  

  

  

  

How many TRIGGERS are allowed in MySql table?

  

  

  

  

A user with RELOAD priveliges can

  

  

  

  

Which of the following is not a character manipulation function?

  

  

  

  

In PHP in order to access MySQL database you will use:

  

  

  

  

Which command is used in Mysql command line tool to return to window command shell?

  

  

  

  

In a LIKE clause, you can ask for any 6 letter value by writing?

  

  

  

  

The program called mysql is

  

  

  

  

  

With SQL, how can you insert a new record into the "Persons" table?

  

  

  

What kind of replication is supported by the MySQL server?

  

  

  

  

Which of these field types would be best to hold a .jpg image?

  

  

  

  

How much storage space does DATETIME require?

  

  

  

  

How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?

  

  

  

  

Which command is used on Mysql command line tool to return to window command shell?

  

  

  

  

Which SQL statement is used to update data in a database?

  

  

  

  

User() fucntion returns the current users user name and ___________

  

  

  

  

To remove duplicate rows from the result set of a SELECT use the following keyword:

  

  

  

  

Where is metadata stored in MySQL?

  

  

  

  

In a LIKE clause, you can could ask for any value ending in "qpt" by writing

  

  

  

  

Mysql command line tool is used to show “how many rows are returned and how long SQL command took to execute”

  

  

  

  

If you're writing a client using the C language API, your source code should include the following line at the top:

  

  

  

  

Which of the following is used to delete an entire MYSQL database?

  

  

  

  

Which authentications are required for login into Mysql command line tool?

  

  

  

  

What is an open source DBMS product that runs on UNIX, Linux and Windows

  

  

  

  

What's the difference between the DESCRIBE and SHOW FIELDS FROM commands?

  

  

  

The “Mysql command line tool” format the results in which of the following format:

  

  

  

  

Which of the following is not a valid aggregate function?

  

  

  

  

________ is an open source DBMS product that runs on UNIX, Linux and Windows.

  

  

  

  

What is a candidate key?

  

  

  

  

Which one will delete the table data as well as table structure?

  

  

What is DML?

  

  

  

  

With SQL, how can you return the number of records in the "Persons" table?

  

  

  

  

How can we get the number of records or rows in a table?

  

  

  

  

Which statement is used to access an existing Database?

  

  

  

  

What is DDL?

  

  

  

  

Which is the default order of sort in ORDER BY clause?

  

  

Sometimes the expression "select count(*)" will return fewer rows than the expression "select count(value)".

  

  

With SQL, how do you select all the records from a table named "Persons" where the "LastName" is alphabetically between (and including) "Hansen" and "Pettersen"?

  

  

  

The main MySQL program that does all the data handling is called?

  

  

  

  

Which of these field types would be best to hold a film title?

  

  

  

  

mysql_pconnect() is used to make a persistent connection to the database which means a SQL link that do not close when the execution of your script ends.

  

  

MySQL supports the complete SQL99 standard

  

  

With SQL, how can you insert "Olsen" as the "LastName" in the "Persons" table?

  

  

  

Can joins be nested?

  

  

What SQL clause is used to restrict the rows returned by a query?

  

  

  

  

Note:
  • Click the 'Submit Test' button given in the bottom of this page to Submit your answers.
  • Test will be submitted automatically if the time expired.
  • Don't refresh the page.