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?
The result of a SQL SELECT statement is a ______.
To delete the database __________ Command is used
Select two options which do not belong to the Purpose of Delete
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
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?
What is the meaning of the “HAVING” clause in MySQL?
The HAVING clause does which of the following?
Which one is not used in SQL?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Find all the cities whose humidity is 89
The SQL WHERE clause used for
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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?
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?
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;
Which command is used to change the definition of a table in SQL ?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
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''?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Which of the SQL statement is correct?
You can delete a view with _____________ Command.
Which of the following statements are TRUE regarding subqueries?
What is "Subquery"?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following operators cannot be used in a sub-query?
Which of the following clause is mandatorily used in a sub-query?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
Which one of the following can be taken as a Primary Key?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Can you validate the statement?
A table contains more than one foreign key
True or False?
By default, which key creates Clustered index?
Where are Joins used?
How many tables may include with a join?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
In which two cases would you use an outer join? (Choose two.)
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Alias is used in Joins.
What is the function of Full Outer Join in SQL?
Choose the correct query for the below scenario.
Join is different from Inner join.
What is the syntax for joining two tables? Pick Two
Which SQL keyword is used to retrieve a maximum value?
The _____ aggregation operation adds up all the values of the attribute
Which of the following do you need to consider when you make a table in SQL?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?