Please enter your details here.
What is the full form of SQL?
Which of the following database cannot be dropped?
Which of the following is a valid SQL type?
Which one is a non-relational database?
The result of a SQL SELECT statement is a ______.
You can delete a view with _____________ Command.
What is the meaning of the “HAVING” 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 ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Syntax for create a views is _______
Select two options which do not belong to the Purpose of Delete
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 one is not used in SQL?
What is the significance of the statement of the below query?
Which of the SQL statement is correct?
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?
Which SQL Query is used for updating the ContactName in the Customers table?
What is the meaning of the “ORDER BY” clause in MySQL?
The SQL WHERE clause used for
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?
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 keyword is used to sort the result-set?
The HAVING clause does which of the following?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
What can be the condition in the "WHERE" clause in a SQL query?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Analyse the following Query and Mark the answer whether it's the correct query or not?
Which of the following operators cannot be used in a sub-query?
Which of the following multi-row operators can be used with a sub-query?
Which of the following is true about sub-queries?
A subquery in an SQL SELECT statement is enclosed in
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
A ______ index is created based on only one table column.
Which of the following do you need to consider when you make a table in SQL?
How many Primary Keys can have in a table?
Does an Index help to speed up?
What is the function of Full Outer Join in SQL?
Which type of join is not desirable for retrieval?
In which two cases would you use an outer join? (Choose two.)
Choose the correct query for the below scenario.
Analyze the following tables and output and choose the correct query to achieve the output.
Alias is used in Joins.
What is the syntax for joining two tables? Pick Two
Below image depicts:
Join is different from Inner join.
In the absence of WHERE condition this JOIN will function like a _______.
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
“COUNT” keyword belongs to which categories in MySQL?
Which of the following is incorrect SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;