Please enter your details here.
The result of a SQL SELECT statement is a ______.
Which of the following is a valid SQL type?
What does a DML Stand for?
Which one is a non-relational database?
Which file type is used for database backup?
Which SQL keyword is used to sort the result-set?
Which SQL Query is used for updating the ContactName in the Customers table?
What is the significance of “ORDER BY” in the following MySQL statement?
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?
You can delete a view with _____________ Command.
Analyze the following Query and Mark the answer whether it's a correct query or not?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
We can use one table to create another table using the below query. True or False ?
CREATE TABLE TestTable AS
SELECT customername, contactname
FROM customers;
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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''?
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?
What is the meaning of the “HAVING” clause in MySQL?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
The HAVING clause does which of the following?
Which of the SQL statement is correct?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
What is the significance of the statement “HAVING COUNT (emp_id)>2” 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?
What can be the condition in the "WHERE" clause in a SQL query?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Find the names of the countries whose condition is sunny
Which of the following statements are TRUE regarding subqueries?
What is "Subquery"?
An ORDER BY can be used in a subquery.
Where subqueries can not be used?
Which of the following multi-row operators can be used with a sub-query?
A column with a Primary key has a Null value.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
We can use the index on columns that contain a high number of NULL values.
Does an Index help to speed up?
Which one of the following can be taken as a Primary Key?
In which two cases would you use an outer join? (Choose two.)
What is the function of Full Outer Join in SQL?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Alias is used in Joins.
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Analyze the following tables and output and choose the correct query to achieve the output.
Join is different from Inner join.
Choose the query that matches the above image.
Where are Joins used?
Which SQL keyword is used to retrieve a maximum value?
The _____ aggregation operation adds up all the values of the attribute
Which of the following is incorrect SQL?
“COUNT” keyword belongs to which categories in MySQL?