Please enter your details here.
What is the main language of Transact-SQL?
SQL can be used to
What is the full form of SQL?
The result of a SQL SELECT statement is a ______.
Which of the following is a valid SQL type?
Syntax for create a views is _______
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''?
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 query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
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?
What is the significance of the statement of the below query?
Analyze the following Query and Mark the answer whether it's a correct query or not?
Find the names of the countries whose condition is sunny
Find all the cities whose humidity is 89
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Select two options which do not belong to the Purpose of Delete
What is the significance of “ORDER BY” in the following MySQL statement?
Which SQL Query is used for updating the ContactName in the Customers table?
Which command is used to change the definition of a table in SQL ?
What is the meaning of the “ORDER BY” clause in MySQL?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
The SQL WHERE clause used for
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Which one is not used in SQL?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
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?
You can delete a view with _____________ Command.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Which of the SQL statement is correct?
A subquery in an SQL SELECT statement is enclosed in
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following multi-row operators can be used with a sub-query?
Which of the following clause is mandatorily used in a sub-query?
A subquery can be used anywhere an expression is allowed.
Which of the following do you need to consider when you make a table in SQL?
We can use the index on columns that contain a high number of NULL values.
A ______ index is created based on only one table column.
Student (ID, Name, Dept_name, Total_credit)
In this above query which attribute form the Primary Key?
A column with a Unique key has duplicate values.
Analyze the following tables and output and choose the correct query to achieve the output.
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?
What are the joins available in SQL?
In the absence of WHERE condition this JOIN will function like a _______.
Which type of join is not desirable for retrieval?
Alias is used in Joins.
What is the function of Full Outer Join in SQL?
Which SQL keyword is used to retrieve the highest value?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
What values does the count(*) function ignore?
Use below table (Salesemployee) and answer the following question
What is the output of the following query?