Please enter your details here.
To delete the database __________ Command is used
What is the SQL query used to retrieve all the data from the customer table?
Which file type is used for database backup?
Which one is a non-relational database?
What is the meaning of a Database?
What is the significance of the statement of the below query?
Which one is not used in SQL?
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
Syntax for create a views is _______
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''?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
What is the meaning of the “ORDER BY” clause in MySQL?
What can be the condition in the "WHERE" clause in a SQL query?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Analyse 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?
Which SQL keyword is used to sort the result-set?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
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?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
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?
Find all the cities whose humidity is 89
Which command is used to change the definition of a table in SQL ?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Select two options which do not belong to the Purpose of Delete
An ORDER BY can be used in a subquery.
A subquery can be used anywhere an expression is allowed.
Which of the following operators cannot be used in a sub-query?
Which of the following statements are TRUE regarding subqueries?
Which of the following clause is mandatorily used in a sub-query?
A Key which is a set of one or more columns that can identify a record uniquely is called?
Which of the following is not a Key in SQL Server?
How many types of indexes are there in the SQL server?
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?
What is the function of Full Outer Join in SQL?
Analyze the following tables and output and choose the correct query to achieve the output.
Alias is used in Joins.
Statement: Join for each row of one table to every row of another table.
Which Join?
Join is different from Inner join.
In which two cases would you use an outer join? (Choose two.)
In the absence of WHERE condition this JOIN will function like a _______.
Where are Joins used?
The _____ aggregation operation adds up all the values of the attribute
What values does the count(*) function ignore?
Which of the following is incorrect SQL?