Please enter your details here.
Which of the following database cannot be dropped?
What is the full form of SQL?
Which of the following is not a database object?
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 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.
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 HAVING clause does which of the following?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Which SQL keyword is used to sort the result-set?
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 can you return all the records from a table named "Persons" sorted descending by "FirstName"?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Which command is used to change the definition of a table in SQL ?
Syntax for create a views is _______
Analyse the following Query and Mark the answer whether it's the correct query or not?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
What can be the condition in the "WHERE" clause in a SQL query?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Find the names of the countries whose condition is sunny
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
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?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
The SQL WHERE clause used for
Analyze the following Query and Mark the answer whether it's a correct query or not?
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;
Which of the following multi-row operators can be used with a sub-query?
Where subqueries can not be used?
Which of the following is true about sub-queries?
Which of the following statement(s) is TRUE regarding subqueries?
A subquery can be used anywhere an expression is allowed.
A column with a Unique key has duplicate values.
We can use the index on columns that contain a high number of NULL values.
How many types of indexes are there in the SQL server?
How many Primary Keys can have in a table?
Which of the following is correct DROP INDEX Command?
Analyze the following tables and output and choose the correct query to achieve the output.
Which type of join is not desirable for retrieval?
What is the function of Full Outer Join in SQL?
In the absence of WHERE condition this JOIN will function like a _______.
What is the syntax for joining two tables? Pick Two
Choose the query that matches the above image.
Statement: Join for each row of one table to every row of another table.
Which Join?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
Alias is used in Joins.
The _____ aggregation operation adds up all the values of the attribute
What values does the count(*) function ignore?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Which SQL keyword is used to retrieve the highest value?