Please enter your details here.
What does a DML Stand for?
What is the full form of SQL?
To Create a new database __________ Command is used
Which of the following is the original purpose of SQL?
SQL can be used to
You can delete a view with _____________ Command.
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Which command is used to change the definition of a table in SQL ?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which of the SQL statement is correct?
What can be the condition in the "WHERE" clause in a SQL query?
Which one is not used in SQL?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
What is the meaning of the “ORDER BY” clause in MySQL?
If emp_id contains the following set {-1, -2, 2, 3, -3, 1}, what will be the output on the execution of the following MySQL statement?
The HAVING clause does which of the following?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Analyse the following Query and Mark the answer whether it's the correct query or not?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which SQL keyword is used to sort the result-set?
What is the significance of “ORDER BY” in the following MySQL statement?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Analyze the following Query and Mark the answer whether it's a correct query or not?
The SQL WHERE clause used for
What is the significance of the statement of the below query?
Find the names of the countries whose condition is sunny
Select two options which do not belong to the Purpose of Delete
Select ID, name, dept name, salary * 1.1 where instructor;
The query given below will not give an error. Which one of the following has to be replaced to get the desired output?
Which of the following operators cannot be used in a sub-query?
Which of the following clause is mandatorily used in a sub-query?
Which of the following is true about sub-queries?
Where subqueries can not be used?
Which of the following statement(s) is TRUE regarding subqueries?
Does an Index help to speed up?
A Key which is a set of one or more columns that can identify a record uniquely is called?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
By default, which key creates Clustered index?
Which one of the following can be taken as a Primary Key?
What are the joins available in SQL?
Choose the correct query for the below scenario.
Alias is used in Joins.
Analyze the following tables and output and choose the correct query to achieve the output.
How many tables may include with a join?
Where are Joins used?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
“COUNT” keyword belongs to which categories in MySQL?