Please enter your details here.
What is the meaning of a Database?
What is the SQL query used to retrieve all the data from the customer table?
What does a DML Stand for?
Which of the following is the original purpose of SQL?
Which one is a non-relational database?
The HAVING clause does which of the following?
Syntax for create a views is _______
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?
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?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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 ?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
You can delete a view with _____________ Command.
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which SQL Query is used for updating the ContactName in the Customers table?
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?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Select two options which do not belong to the Purpose of Delete
Find all the cities whose humidity is 89
What can be the condition in the "WHERE" clause in a SQL query?
Which SQL keyword is used to sort the result-set?
The SQL WHERE clause used for
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Which one is not used in SQL?
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the meaning of the “ORDER BY” clause in MySQL?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
An ORDER BY can be used in a subquery.
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following operators cannot be used in a sub-query?
Where subqueries can not be used?
Which of the following is true about sub-queries?
A Key which is a set of one or more columns that can identify a record uniquely is called?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Which of the following do you need to consider when you make a table in SQL?
Which one of the following can be taken as a Primary Key?
How many Primary Keys can have in a table?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Which type of join is not desirable for retrieval?
Analyze the following tables and output and choose the correct query to achieve the output.
In which two cases would you use an outer join? (Choose two.)
In the absence of WHERE condition this JOIN will function like a _______.
How many tables may include with a join?
What are the joins available in SQL?
Statement: Join for each row of one table to every row of another table.
Which Join?
Choose the query that matches the above image.
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which SQL keyword is used to retrieve a maximum value?
Which of the following set of operations is a valid set of Aggregate operations in SQL?