Please enter your details here.
Which one is not part of the Database backup file?
To Create a new database __________ Command is used
Which of the following is a valid SQL type?
In SQL, which command is used to change a table's storage characteristics?
What does a DML Stand for?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
The HAVING clause does which of the following?
Which command is used to change the definition of a table in SQL ?
What is the meaning of the “HAVING” clause in MySQL?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
What can be the condition in the "WHERE" clause in a SQL query?
Which one is not used in SQL?
Which of the SQL statement is correct?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
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?
What is the meaning of the “ORDER BY” clause in MySQL?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
The SQL WHERE clause used for
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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 is the significance of “ORDER BY” in the following MySQL statement?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Select two options which do not belong to the Purpose of Delete
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?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Which of the following is true about sub-queries?
A subquery can be used anywhere an expression is allowed.
Which of the following multi-row operators can be used with a sub-query?
An ORDER BY can be used in a subquery.
Which of the following statements are TRUE regarding subqueries?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
A Key which is a set of one or more columns that can identify a record uniquely is called?
We can use the index on columns that contain a high number of NULL values.
How many Primary Keys can have in a table?
Which key accepts multiple NULL values?
What is the function of Full Outer Join in SQL?
Analyze the following tables and output and choose the correct query to achieve the output.
Alias is used in Joins.
Statement: Join for each row of one table to every row of another table.
Which Join?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Join is different from Inner join.
In which two cases would you use an outer join? (Choose two.)
Choose the correct query for the below scenario.
In the absence of WHERE condition this JOIN will function like a _______.
Which SQL keyword is used to retrieve a maximum value?
Which SQL keyword is used to retrieve the highest value?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
Which of the following set of operations is a valid set of Aggregate operations in SQL?