Please enter your details here.
Which file type is used for database backup?
What is the SQL query used to retrieve all the data from the customer table?
To delete the database __________ Command is used
Which one is not part of the Database backup file?
What does a DML Stand for?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
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?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Which command is used to change the definition of a table in SQL ?
Analyze the following Query and Mark the answer whether it's a correct query or not?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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?
What is the significance of “ORDER BY” in the following MySQL statement?
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?
What is the meaning of the “HAVING” clause in MySQL?
What is the meaning of the “ORDER BY” clause in MySQL?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
The SQL WHERE clause used for
The HAVING clause does which of the following?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What can be the condition in the "WHERE" clause in a SQL query?
Find the names of the countries whose condition is sunny
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;
Find all the cities whose humidity is 89
Analyse 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.
Which of the following operators cannot be used in a sub-query?
A subquery in an SQL SELECT statement is enclosed in
Where subqueries can not be used?
A subquery can be used anywhere an expression is allowed.
What is "Subquery"?
A ______ index is created based on only one table column.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Which one of the following can be taken as a Primary Key?
Which of the following do you need to consider when you make a table in SQL?
Does an Index help to speed up?
What is the syntax for joining two tables? Pick Two
Which type of join is not desirable for retrieval?
In the absence of WHERE condition this JOIN will function like a _______.
Join is different from Inner join.
Where are Joins used?
What is the function of Full Outer Join in SQL?
What are the joins available in SQL?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
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.
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Which among the following belongs to an “aggregate function”?
What values does the count(*) function ignore?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which of the following is incorrect SQL?
“COUNT” keyword belongs to which categories in MySQL?