Please enter your details here.
What is the main language of Transact-SQL?
Which of the following is the original purpose of SQL?
Which one is not part of the Database backup file?
To Create a new database __________ Command is used
Which is the subset of SQL command used to manipulate Database structures, including tables?
What is the meaning of the “ORDER BY” clause in MySQL?
What is the meaning of the “HAVING” clause in MySQL?
Which SQL keyword is used to sort the result-set?
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''?
Syntax for create a views is _______
Which of the SQL statement is correct?
Select two options which do not belong to the Purpose of Delete
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Which one is not used in SQL?
What is the significance of “ORDER BY” in the following MySQL statement?
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;
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What can be the condition in the "WHERE" clause in a SQL query?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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?
You can delete a view with _____________ Command.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Find the names of the countries whose condition is sunny
Find all the cities whose humidity is 89
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
Which of the following multi-row operators can be used with a sub-query?
A subquery can be used anywhere an expression is allowed.
What is "Subquery"?
Which of the following is true about sub-queries?
Which one of the following can be taken as a Primary Key?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
Does an Index help to speed up?
By default, which key creates Clustered index?
Which of the following is not a Key in SQL Server?
What are the joins available in SQL?
Choose the query that matches the above image.
Below image depicts:
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Analyze the following tables and output and choose the correct query to achieve the output.
Alias is used in Joins.
In the absence of WHERE condition this JOIN will function like a _______.
What is the syntax for joining two tables? Pick Two
How many tables may include with a join?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
Which of the following do you need to consider when you make a table in SQL?
What values does the count(*) function ignore?
Which among the following belongs to an “aggregate function”?