Please enter your details here.
Which is the subset of SQL command used to manipulate Database structures, including tables?
What does a DML Stand for?
The result of a SQL SELECT statement is a ______.
Which of the following database cannot be dropped?
What is the SQL query used to retrieve all the data from the customer table?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
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;
Find all the cities whose humidity is 89
Which command is used to change the definition of a table in SQL ?
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 ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
You can delete a view with _____________ Command.
Analyse the following Query and Mark the answer whether it's the correct query or not?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Which one is not used in SQL?
Which SQL Query is used for updating the ContactName in the Customers table?
What is the significance of “ORDER BY” in the following MySQL statement?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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?
Find the names of the countries whose condition is sunny
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
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?
The SQL WHERE clause used for
Analyze the following Query and Mark the answer whether it's the correct query or not ?
What is the significance of the statement of the below query?
The HAVING clause does which of the following?
Syntax for create a views is _______
Which of the following multi-row operators can be used with a sub-query?
Which of the following operators cannot be used in a sub-query?
Which of the following statements are TRUE regarding subqueries?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
What is "Subquery"?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
By default, which key creates Clustered index?
Which of the following is correct DROP INDEX Command?
We can use the index on columns that contain a high number of NULL values.
A table contains more than one foreign key
Below image depicts:
In which two cases would you use an outer join? (Choose two.)
Analyze the following tables and output and choose the correct query to achieve the output.
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Where are Joins used?
What is the syntax for joining two tables? Pick Two
How many tables may include with a join?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which of the following is incorrect SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
What values does the count(*) function ignore?