Please enter your details here.
Which of the following database cannot be dropped?
Which file type is used for database backup?
What is the main language of Transact-SQL?
Which of the following is not a database object?
The result of a SQL SELECT statement is a ______.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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?
Find the names of the countries whose condition is sunny
Select two options which do not belong to the Purpose of Delete
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?
Which SQL keyword is used to sort the result-set?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
What is the meaning of the “ORDER BY” clause in MySQL?
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 SQL Query is used for updating the ContactName in the Customers table?
What can be the condition in the "WHERE" clause in a SQL query?
Syntax for create a views is _______
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Which command is used to change the definition of a table in SQL ?
Which of the SQL statement is correct?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
With SQL, how do you select all the records from a table named "Persons" where the value of the column "Firstname" ends with an ''a''?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
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.
Analyse the following Query and Mark the answer whether it's the correct query or not?
Find all the cities whose humidity is 89
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
An ORDER BY can be used in a subquery.
What is "Subquery"?
By default, which key creates Clustered index?
How many Primary Keys can have in a table?
A column with a Primary key has a Null value.
Which of the following is correct DROP INDEX Command?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
In which two cases would you use an outer join? (Choose two.)
How many tables may include with a join?
What are the joins available in SQL?
Alias is used in Joins.
Choose the query that matches the above image.
Analyze the following tables and output and choose the correct query to achieve the output.
Where are Joins used?
Which type of join is not desirable for retrieval?
In the absence of WHERE condition this JOIN will function like a _______.
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
“COUNT” keyword belongs to which categories in MySQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Which SQL keyword is used to retrieve the highest value?
Which of the following is incorrect SQL?