Please enter your details here.
The result of a SQL SELECT statement is a ______.
To Create a new database __________ Command is used
Which of the following is the original purpose of SQL?
What is the SQL query used to retrieve all the data from the customer table?
What is the main language of Transact-SQL?
What can be the condition in the "WHERE" clause in a SQL query?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Analyse the following Query and Mark the answer whether it's the correct query or not?
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?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
With SQL, how do you select all the records from a table named "Persons" where the value of the column "Firstname" ends with an ''a''?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Select two options which do not belong to the Purpose of Delete
Which SQL Query is used for updating the ContactName in the Customers table?
Which command is used to change the definition of a table in SQL ?
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the meaning of the “ORDER BY” clause in MySQL?
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
Which one is not used in SQL?
What is the significance of the statement of the below query?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
The SQL WHERE clause used for
Find the names of the countries whose condition is sunny
An ORDER BY can be used in a subquery.
What is "Subquery"?
A subquery can be used anywhere an expression is allowed.
Which of the following clause is mandatorily used in a sub-query?
Which of the following statements are TRUE regarding subqueries?
Which of the following is not a Key in SQL Server?
How many types of indexes are there in the SQL server?
Does an Index help to speed up?
A ______ index is created based on only one table column.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Analyze the following tables and output and choose the correct query to achieve the output.
Below image depicts:
Statement: Join for each row of one table to every row of another table.
Which Join?
Choose the query that matches the above image.
In which two cases would you use an outer join? (Choose two.)
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
How many tables may include with a join?
Which type of join is not desirable for retrieval?
Which among the following belongs to an “aggregate function”?
Which SQL keyword is used to retrieve the highest value?
What values does the count(*) function ignore?