Please enter your details here.
Which of the following is the original purpose of SQL?
The result of a SQL SELECT statement is a ______.
To delete the database __________ Command is used
What does a DML Stand for?
To Create a new database __________ Command is used
You need to find out the names of all employees who belong to the same department as the employee 'Jessica Butcher' who is in department 100 and has an employee ID 40. Which of the following queries will be correct?
Analyse the following Query and Mark the answer whether it's the correct query or not?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Find the names of the countries whose condition is sunny
The HAVING clause does which of the following?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
You can delete a view with _____________ Command.
The SQL WHERE clause used for
What is the meaning of the “ORDER BY” clause in MySQL?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Analyze the following Query and Mark the answer whether it's the correct query or not ?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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;
Which SQL keyword is used to sort the result-set?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
What is the significance of the statement of the below query?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
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 can be the condition in the "WHERE" clause in a SQL query?
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?
Which SQL Query is used for updating the ContactName in the Customers table?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
Where subqueries can not be used?
Which of the following statements are TRUE regarding subqueries?
Which of the following is true about sub-queries?
Which of the following clause is mandatorily used in a sub-query?
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?
Which of the following do you need to consider when you make a table in SQL?
Which key accepts multiple NULL values?
Which of the following is correct DROP INDEX Command?
Analyze the following tables and output and choose the correct query to achieve the output.
Below image depicts:
What is the function of Full Outer Join in SQL?
In which two cases would you use an outer join? (Choose two.)
Join is different from Inner join.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Choose the query that matches the above image.
Which among the following belongs to an “aggregate function”?