Please enter your details here.
In SQL, which command is used to change a table's storage characteristics?
To delete the database __________ Command is used
What is the meaning of a Database?
Which is the subset of SQL command used to manipulate Database structures, including tables?
To Create a new database __________ Command is used
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?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Find all the cities whose humidity is 89
Find the names of the countries whose condition is sunny
What is the meaning of the “ORDER BY” clause in MySQL?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Analyze the following Query and Mark the answer whether it's a correct query or not?
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?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What is the significance of “ORDER BY” in the following MySQL statement?
What is the significance of the statement of the below query?
Which of the SQL statement is correct?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
The HAVING clause does which of the following?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Which command is used to change the definition of a table in SQL ?
What is the meaning of the “HAVING” clause in MySQL?
The SQL WHERE clause used for
Select two options which do not belong to the Purpose of Delete
Where subqueries can not be used?
What is "Subquery"?
Can you validate the statement?
An ORDER BY can be used in a subquery.
True or False?
A subquery in an SQL SELECT statement is enclosed in
Which of the following clause is mandatorily used in a sub-query?
How many types of indexes are there in the SQL server?
Does an Index help to speed up?
A table contains more than one foreign key
Which of the following is correct DROP INDEX Command?
By default, which key creates Clustered index?
Analyze the following tables and output and choose the correct query to achieve the output.
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:
In which two cases would you use an outer join? (Choose two.)
Which type of join is not desirable for retrieval?
Alias is used in Joins.
Where are Joins used?
What is the syntax for joining two tables? Pick Two
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
What values does the count(*) function ignore?
Which SQL keyword is used to retrieve a maximum value?
Which of the following do you need to consider when you make a table in SQL?
The _____ aggregation operation adds up all the values of the attribute
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which of the following is incorrect SQL?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
“COUNT” keyword belongs to which categories in MySQL?