Please enter your details here.
To delete the database __________ Command is used
To Create a new database __________ Command is used
SQL can be used to
Which of the following is a valid SQL type?
Which of the following database cannot be dropped?
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?
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''?
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?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Find all the cities whose humidity is 89
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Which one is not used in SQL?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
What is the significance of the statement of the below query?
What can be the condition in the "WHERE" clause in a SQL query?
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?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Which SQL Query is used for updating the ContactName in the Customers table?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which of the SQL statement is correct?
Which command is used to change the definition of a table in SQL ?
What is the meaning of the “HAVING” clause in MySQL?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
You can delete a view with _____________ Command.
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 the names of the countries whose condition is sunny
Which of the following statements are TRUE regarding subqueries?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following clause is mandatorily used in a sub-query?
Which of the following operators cannot be used in a sub-query?
Which of the following is true about sub-queries?
Which key accepts multiple NULL values?
How many Primary Keys can have in a table?
A table contains more than one foreign key
A column with a Unique key has duplicate values.
By default, which key creates Clustered index?
What is the syntax for joining two tables? Pick Two
How many tables may include with a join?
What is the function of Full Outer Join in SQL?
Where are Joins used?
Analyze the following tables and output and choose the correct query to achieve the output.
Choose the correct query for the below scenario.
Join is different from Inner join.
Which type of join is not desirable for retrieval?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
The _____ aggregation operation adds up all the values of the attribute
Which of the following set of operations is a valid set of Aggregate operations in SQL?
Which of the following do you need to consider when you make a table in SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;