Please enter your details here.
Which file type is used for database backup?
Which one is not part of the Database backup file?
What does a DML Stand for?
The result of a SQL SELECT statement is a ______.
Which is the subset of SQL command used to manipulate Database structures, including tables?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
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.
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What is the meaning of the “HAVING” clause in MySQL?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which one is not used in SQL?
Find all the cities whose humidity is 89
Select two options which do not belong to the Purpose of Delete
Which command is used to change the definition of a table in SQL ?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which of the SQL statement is correct?
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?
The HAVING clause does which of the following?
What is the significance of “ORDER BY” in the following MySQL statement?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
What is the significance of the statement of the below query?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
What is the meaning of the “ORDER BY” clause in MySQL?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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 operators cannot be used in a sub-query?
A subquery can be used anywhere an expression is allowed.
A subquery in an SQL SELECT statement is enclosed in
Which of the following multi-row operators can be used with a sub-query?
Which of the following statements are TRUE regarding subqueries?
Which of the following is correct DROP INDEX Command?
A ______ index is created based on only one table column.
A table contains more than one foreign key
Does an Index help to speed up?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
Analyze the following tables and output and choose the correct query to achieve the output.
How many tables may include with a join?
Alias is used in Joins.
Choose the correct query for the below scenario.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
In which two cases would you use an outer join? (Choose two.)
What are the joins available in SQL?
Choose the query that matches the above image.
What is the function of Full Outer Join in SQL?
What values does the count(*) function ignore?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
Which of the following is incorrect SQL?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which of the following do you need to consider when you make a table in SQL?