Please enter your details here.
To Create a new database __________ Command is used
What does a DML Stand for?
Which one is not part of the Database backup file?
SQL can be used to
Which one is a non-relational database?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
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.
Which SQL Query is used for updating the ContactName in 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 name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Find the names of the countries whose condition is sunny
You can delete a view with _____________ Command.
What is the significance of “ORDER BY” in the following MySQL statement?
What is the meaning of the “HAVING” clause in MySQL?
What is the meaning of the “ORDER BY” clause in MySQL?
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?
The HAVING clause does which of the following?
Analyse 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
Select two options which do not belong to the Purpose of Delete
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?
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?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
What can be the condition in the "WHERE" clause in a SQL query?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which of the following clause is mandatorily used in a sub-query?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
What is "Subquery"?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following is true about sub-queries?
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 key accepts multiple NULL values?
Which of the following is not a Key in SQL Server?
Does an Index help to speed up?
What are the joins available in SQL?
How many tables may include with a join?
In the absence of WHERE condition this JOIN will function like a _______.
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Join is different from Inner join.
Analyze the following tables and output and choose the correct query to achieve the output.
Where are Joins used?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
Below image depicts:
Choose the correct query for the below scenario.
What values does the count(*) function ignore?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
Which SQL keyword is used to retrieve the highest value?