Please enter your details here.
Which file type is used for database backup?
What is the full form of SQL?
Which one is a non-relational database?
What is the SQL query used to retrieve all the data from the customer table?
What is the main language of Transact-SQL?
The SQL WHERE clause used for
Select two options which do not belong to the Purpose of Delete
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?
Syntax for create a views is _______
What is the significance of “ORDER BY” in the following MySQL statement?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
What is the significance of the statement “GROUP BY d.name” 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
Find all the cities whose humidity is 89
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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.
Analyse the following Query and Mark the answer whether it's the correct query or not?
Which SQL Query is used for updating the ContactName in the Customers table?
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;
You can delete a view with _____________ Command.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
What can be the condition in the "WHERE" clause in a SQL query?
What is the meaning of the “ORDER BY” clause in MySQL?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
What is the meaning of the “HAVING” clause in MySQL?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Find the names of the countries whose condition is sunny
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Which of the following statement(s) is TRUE regarding subqueries?
Can you validate the statement?
A subquery can be used anywhere an expression is allowed.
True or False?
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?
A subquery in an SQL SELECT statement is enclosed in
By default, which key creates Clustered index?
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 is correct DROP INDEX Command?
Does an Index help to speed up?
Statement: Join for each row of one table to every row of another table.
Which Join?
Analyze the following tables and output and choose the correct query to achieve the output.
In the absence of WHERE condition this JOIN will function like a _______.
Choose the query that matches the above image.
In which two cases would you use an outer join? (Choose two.)
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
How many tables may include with a join?
What is the function of Full Outer Join in SQL?
What is the syntax for joining two tables? Pick Two
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
What values does the count(*) function ignore?