Please enter your details here.
What is the main language of Transact-SQL?
Which of the following is the original purpose of SQL?
Which is the subset of SQL command used to manipulate Database structures, including tables?
SQL can be used to
What is the meaning of a Database?
You can delete a view with _____________ Command.
Which one is not used in SQL?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
What is the significance of “ORDER BY” in the following MySQL statement?
The SQL WHERE clause used for
Which SQL Query is used for updating the ContactName in the Customers table?
What is the meaning of the “ORDER BY” clause in MySQL?
What is the significance of the statement of the below query?
What is the meaning of the “HAVING” clause in MySQL?
Syntax for create a views is _______
Which SQL keyword is used to sort the result-set?
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''?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
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?
Which of the SQL statement is correct?
Analyse the following Query and Mark the answer whether it's the correct query or not?
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
The HAVING clause does which of the following?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Which of the following multi-row operators can be used with a sub-query?
An ORDER BY can be used in a subquery.
Which of the following operators cannot be used in a sub-query?
Which of the following statement(s) is TRUE regarding subqueries?
What is "Subquery"?
A table contains more than one foreign key
Which of the following is correct DROP INDEX Command?
How many types of indexes are there in the SQL server?
A Key which is a set of one or more columns that can identify a record uniquely is called?
Which one of the following can be taken as a Primary Key?
Evaluate this SQL statement:
Which SQL statement is equivalent to the above SQL statement?
What is the syntax for joining two tables? Pick Two
Which type of join is not desirable for retrieval?
In the absence of WHERE condition this JOIN will function like a _______.
Choose the correct query for the below scenario.
Below image depicts:
How many tables may include with a join?
Join is different from Inner join.
Alias is used in Joins.
Analyze the following tables and output and choose the correct query to achieve the output.
Which SQL keyword is used to retrieve the highest value?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;