Please enter your details here.
Which one is a non-relational database?
To Create a new database __________ Command is used
The result of a SQL SELECT statement is a ______.
What does a DML Stand for?
Which file type is used for database backup?
What is the significance of “ORDER BY” in the following MySQL statement?
You can delete a view with _____________ Command.
Which SQL Query is used for updating the ContactName in the Customers table?
Select two options which do not belong to the Purpose of Delete
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Find the names of the countries whose condition is sunny
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
What can be the condition in the "WHERE" clause in a SQL query?
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?
Which SQL keyword is used to sort the result-set?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
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?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
The HAVING clause does which of the following?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Syntax for create a views is _______
Which one is not used in SQL?
Which of the SQL statement is correct?
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;
The SQL WHERE clause used for
Which of the following statement(s) is TRUE regarding subqueries?
A subquery in an SQL SELECT statement is enclosed in
Which of the following clause is mandatorily used in a sub-query?
Which of the following operators cannot be used in a sub-query?
Where subqueries can not be used?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Which of the following is correct DROP INDEX Command?
A column with a Primary key has a Null value.
Which of the following do you need to consider when you make a table in SQL?
A Key which is a set of one or more columns that can identify a record uniquely is called?
Below image depicts:
What is the syntax for joining two tables? Pick Two
Where are Joins used?
Alias is used in Joins.
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 _______.
In which two cases would you use an outer join? (Choose two.)
Which type of join is not desirable for retrieval?
Analyze the following tables and output and choose the correct query to achieve the output.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Which SQL keyword is used to retrieve the highest value?
“COUNT” keyword belongs to which categories in MySQL?