Please enter your details here.
Which of the following database cannot be dropped?
In SQL, which command is used to change a table's storage characteristics?
What does a DML Stand for?
What is the full form of SQL?
To Create a new database __________ Command is used
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?
What is the meaning of the “ORDER BY” clause in MySQL?
Which SQL keyword is used to sort the result-set?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Select two options which do not belong to the Purpose of Delete
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
The HAVING clause does which of the following?
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.
The SQL WHERE clause used for
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Find all the cities whose humidity is 89
Analyse the following Query and Mark the answer whether it's the correct query or not?
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;
What is the significance of “ORDER BY” in the following MySQL statement?
You can delete a view with _____________ Command.
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''?
Find the names of the countries whose condition is sunny
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 one is not used in SQL?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Can you validate the statement?
A subquery can be used anywhere an expression is allowed.
True or False?
Which of the following statement(s) is TRUE regarding subqueries?
What is "Subquery"?
Which of the following is true about sub-queries?
An ORDER BY can be used in a subquery.
Does an Index help to speed up?
Which of the following is correct DROP INDEX Command?
Which one of the following can be taken as a Primary Key?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Which of the following do you need to consider when you make a table in SQL?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
In the absence of WHERE condition this JOIN will function like a _______.
Choose the query that matches the above image.
Alias is used in Joins.
What are the joins available in SQL?
In which two cases would you use an outer join? (Choose two.)
Analyze the following tables and output and choose the correct query to achieve the output.
Below image depicts:
Which type of join is not desirable for retrieval?
Statement: Join for each row of one table to every row of another table.
Which Join?
Which of the following is incorrect SQL?