Please enter your details here.
Which of the following is the original purpose of SQL?
Which one is a non-relational database?
Which of the following is not a database object?
Which is the subset of SQL command used to manipulate Database structures, including tables?
What is the meaning of a Database?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
What is the significance of “ORDER BY” in the following MySQL statement?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
Which SQL keyword is used to sort the result-set?
What is the meaning of the “ORDER BY” clause in MySQL?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
The SQL WHERE clause used for
Which of the SQL statement is correct?
What can be the condition in the "WHERE" clause in a SQL query?
Select two options which do not belong to the Purpose of Delete
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?
You can delete a view with _____________ Command.
Find all the cities whose humidity is 89
The HAVING clause does which of the following?
Syntax for create a views is _______
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
What is the meaning of the “HAVING” clause in MySQL?
Which one is not used in SQL?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
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?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Which of the following is true about sub-queries?
Which of the following clause is mandatorily used in a sub-query?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following multi-row operators can be used with a sub-query?
Where subqueries can not be used?
We can use the index on columns that contain a high number of NULL values.
Which key accepts multiple NULL values?
A ______ index is created based on only one table column.
How many Primary Keys can have in a table?
Which of the following is not a Key in SQL Server?
Analyze the following tables and output and choose the correct query to achieve the output.
Join is different from Inner join.
Below image depicts:
Choose the query that matches the above image.
What is the syntax for joining two tables? Pick Two
What are the joins available in SQL?
Choose the correct query for the below scenario.
Which type of join is not desirable for retrieval?
Which of the following do you need to consider when you make a table in SQL?
Which among the following belongs to an “aggregate function”?
The _____ aggregation operation adds up all the values of the attribute
Use below table (Salesemployee) and answer the following question
What is the output of the following query?