Please enter your details here.
Which one is a non-relational database?
What is the SQL query used to retrieve all the data from the customer table?
Which of the following is the original purpose of SQL?
Which of the following database cannot be dropped?
In SQL, which command is used to change a table's storage characteristics?
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;
What can be the condition in the "WHERE" clause in a SQL query?
The HAVING clause does which of the following?
Which command is used to change the definition of a table in SQL ?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
What is the significance of the statement “HAVING COUNT (emp_id)>2” 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
What is the meaning of the “HAVING” clause in MySQL?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
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
Analyse the following Query and Mark the answer whether it's the correct query or not?
Find the names of the countries whose condition is sunny
Find all the cities whose humidity is 89
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
You can delete a view with _____________ Command.
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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 SQL WHERE clause used for
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 Query is used for updating the ContactName in the Customers table?
What is the significance of the statement of the below query?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Analyze the following Query and Mark the answer whether it's a correct query or not?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
What is "Subquery"?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following is true about sub-queries?
Which of the following multi-row operators can be used with a sub-query?
A ______ index is created based on only one table column.
A Key which is a set of one or more columns that can identify a record uniquely is called?
Does an Index help to speed up?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
We can use the index on columns that contain a high number of NULL values.
Below image depicts:
How many tables may include with a join?
What are the joins available in SQL?
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 _______.
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Choose the correct query for the below scenario.
What is the syntax for joining two tables? Pick Two
Join is different from Inner join.
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Use below table (Salesemployee) and answer the following question
What is the output of the following query?