Please enter your details here.
What is the main language of Transact-SQL?
Which of the following is the original purpose of SQL?
Which file type is used for database backup?
To Create a new database __________ Command is used
SQL can be used to
Syntax for create a views is _______
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?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which SQL keyword is used to sort the result-set?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Analyse the following Query and Mark the answer whether it's the correct query or not?
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;
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
You need to find out the names of all employees who belong to the same department as the employee 'Jessica Butcher' who is in department 100 and has an employee ID 40. Which of the following queries will be correct?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
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 two options which do not belong to the Purpose of Delete
Which command is used to change the definition of a table in SQL ?
The HAVING clause does which of the following?
You can delete a view with _____________ Command.
What is the significance of “ORDER BY” in the following MySQL statement?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Which one is not used in SQL?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
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''?
Which of the following is true about sub-queries?
What is "Subquery"?
A subquery can be used anywhere an expression is allowed.
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following statements are TRUE regarding subqueries?
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?
A table contains more than one foreign key
Which of the following is not a Key in SQL Server?
How many Primary Keys can have in a table?
Analyze the following tables and output and choose the correct query to achieve the output.
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
How many tables may include with a join?
Join is different from Inner join.
Which type of join is not desirable for retrieval?
Below image depicts:
Statement: Join for each row of one table to every row of another table.
Which Join?
Where are Joins used?
Which of the following do you need to consider when you make a table in SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Use below table (Salesemployee) and answer the following question
What is the output of the following query?
The _____ aggregation operation adds up all the values of the attribute