Please enter your details here.
To Create a new database __________ Command is used
In SQL, which command is used to change a table's storage characteristics?
Which of the following database cannot be dropped?
What does a DML Stand for?
Which file type is used for database backup?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
What is the meaning of the “ORDER BY” clause in MySQL?
Find the names of the countries whose condition is sunny
Which SQL Query is used for updating the ContactName in the Customers table?
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 two options which do not belong to the Purpose of Delete
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
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?
Which one is not used in SQL?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
The SQL WHERE clause used for
The HAVING clause does which of the following?
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?
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;
Syntax for create a views is _______
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
What can be the condition in the "WHERE" clause in a SQL query?
Find all the cities whose humidity is 89
Analyze the following Query and Mark the answer whether it's the 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?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
An ORDER BY can be used in a subquery.
Which of the following operators cannot be used in a sub-query?
Which of the following clause is mandatorily used in a sub-query?
Where subqueries can not be used?
Which of the following multi-row operators can be used with a sub-query?
A column with a Unique key has duplicate values.
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Does an Index help to speed up?
A ______ index is created based on only one table column.
Join is different from Inner join.
Analyze the following tables and output and choose the correct query to achieve the output.
How many tables may include with a join?
What are the joins available in SQL?
In the absence of WHERE condition this JOIN will function like a _______.
Where are Joins used?
What is the syntax for joining two tables? Pick Two
Choose the query that matches the above image.
Which SQL keyword is used to retrieve a maximum value?
Which of the following is incorrect SQL?
What values does the count(*) function ignore?