Please enter your details here.
Which of the following is the original purpose of SQL?
To delete the database __________ Command is used
Which one is not part of the Database backup file?
Which file type is used for database backup?
What does a DML Stand for?
The SQL WHERE clause used for
You can delete a view with _____________ Command.
Find all the cities whose humidity is 89
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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.
What is the significance of the statement of the below query?
What is the meaning of the “HAVING” clause in MySQL?
Which SQL keyword is used to sort the result-set?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
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?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Select two options which do not belong to the Purpose of Delete
Which command is used to change the definition of a table in SQL ?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
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?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Which SQL Query is used for updating the ContactName in the Customers table?
Analyse the following Query and Mark the answer whether it's the correct query or not?
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the significance of “ORDER BY” in the following MySQL statement?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
A subquery in an SQL SELECT statement is enclosed in
Which of the following clause is mandatorily used in a sub-query?
What is "Subquery"?
An ORDER BY can be used in a subquery.
Which of the following statement(s) is TRUE regarding subqueries?
Does an Index help to speed up?
How many types of indexes are there in the SQL server?
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
A column with a Primary key has a Null value.
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.
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Statement: Join for each row of one table to every row of another table.
Which Join?
Choose the correct query for the below scenario.
How many tables may include with a join?
Alias is used in Joins.
Join is different from Inner join.
Which SQL keyword is used to retrieve a maximum value?
Which SQL keyword is used to retrieve the highest value?
“COUNT” keyword belongs to which categories in MySQL?