Please enter your details here.
Which one is not part of the Database backup file?
Which of the following is a valid SQL type?
To delete the database __________ Command is used
Which of the following is the original purpose of SQL?
SQL can be used to
Which syntax is used for Drop Index (idx_pname) from the Person table 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;
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''?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Which command is used to change the definition of a table in SQL ?
Analyse the following Query and Mark the answer whether it's the correct query or not?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Find the names of the countries whose condition is sunny
Which SQL Query is used for updating the ContactName in the Customers table?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What is the significance of “ORDER BY” in the following MySQL statement?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Which of the SQL statement is correct?
Syntax for create a views is _______
Which SQL keyword is used to sort the result-set?
The HAVING clause does which of the following?
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?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Analyze the following Query and Mark the answer whether it's a correct query or not?
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?
The SQL WHERE clause used for
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Find all the cities whose humidity is 89
What is the meaning of the “HAVING” clause in MySQL?
Which of the following statements are TRUE regarding subqueries?
Which of the following multi-row operators can be used with a sub-query?
What is "Subquery"?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
Which of the following statement(s) is TRUE regarding subqueries?
A table contains more than one foreign key
A Key which is a set of one or more columns that can identify a record uniquely is called?
By default, which key creates Clustered index?
How many types of indexes are there in the SQL server?
Which one of the following can be taken as a Primary Key?
Analyze the following tables and output and choose the correct query to achieve the output.
What is the function of Full Outer Join in SQL?
Where are Joins used?
What are the joins available in SQL?
In which two cases would you use an outer join? (Choose two.)
Alias is used in Joins.
Which type of join is not desirable for retrieval?
Statement: Join for each row of one table to every row of another table.
Which Join?
Which SQL keyword is used to retrieve a maximum value?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________