Please enter your details here.
Which is the subset of SQL command used to manipulate Database structures, including tables?
What is the meaning of a Database?
What does a DML Stand for?
What is the SQL query used to retrieve all the data from the customer table?
To delete the database __________ Command is used
Find all the cities whose humidity is 89
Which of the SQL statement is correct?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which command is used to change the definition of a table in SQL ?
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 meaning of the “HAVING” 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?
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?
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?
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 ?
The HAVING clause does which of the following?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Select two options which do not belong to the Purpose of Delete
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
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 can be the condition in the "WHERE" clause in a SQL query?
Find the names of the countries whose condition is sunny
What is the significance of the statement of the below query?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
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 SQL keyword is used to sort the result-set?
What is the significance of “ORDER BY” in the following MySQL statement?
Which of the following statement(s) is TRUE regarding subqueries?
Where subqueries can not be used?
Which of the following operators cannot be used in a sub-query?
A subquery can be used anywhere an expression is allowed.
A subquery in an SQL SELECT statement is enclosed in
A Key which is a set of one or more columns that can identify a record uniquely is called?
By default, which key creates Clustered index?
How many Primary Keys can have in a table?
Which key accepts multiple NULL values?
A table contains more than one foreign key
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:
Which type of join is not desirable for retrieval?
Analyze the following tables and output and choose the correct query to achieve the output.
What are the joins available in SQL?
Where are Joins used?
Statement: Join for each row of one table to every row of another table.
Which Join?
What is the syntax for joining two tables? Pick Two
Which of the following set of operations is a valid set of Aggregate operations in SQL?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which among the following belongs to an “aggregate function”?
Which of the following is incorrect SQL?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?