Please enter your details here.
Which of the following is the original purpose of SQL?
SQL can be used to
Which of the following is not a database object?
Which of the following is a valid SQL type?
To Create a new database __________ Command is used
The SQL WHERE clause used for
Find the names of the countries whose condition is sunny
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
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''?
Analyze the following Query and Mark the answer whether it's the correct query or not ?
What can be the condition in the "WHERE" clause in a SQL query?
You can delete a view with _____________ Command.
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
What is the meaning of the “ORDER BY” clause in MySQL?
Which command is used to change the definition of a table in SQL ?
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
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;
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
The HAVING clause does which of the following?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Which SQL Query is used for updating the ContactName in the Customers table?
Which SQL keyword is used to sort the result-set?
Syntax for create a views is _______
You need to find out the names of all employees who belong to the same department as the employee 'Jessica Butcher' who is in department 100 and has an employee ID 40. Which of the following queries will be correct?
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Which one is not used in SQL?
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?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following clause is mandatorily used in a sub-query?
A subquery in an SQL SELECT statement is enclosed in
Which of the following is true about sub-queries?
Which of the following operators cannot be used in a sub-query?
Which of the following is correct DROP INDEX Command?
Which one of the following is a set of one or more attributes taken collectively to uniquely identify a record?
How many Primary Keys can have in a table?
By default, which key creates Clustered index?
Does an Index help to speed up?
Where are Joins used?
What is the function of Full Outer Join in SQL?
Join is different from Inner join.
What is the syntax for joining two tables? Pick Two
Which type of join is not desirable for retrieval?
List all orders, showing order number, customer name and credit limit of a customer.
Which of the below query satisfy the above question?
In which two cases would you use an outer join? (Choose two.)
Analyze the following tables and output and choose the correct query to achieve the output.
How many tables may include with a join?
Which SQL keyword is used to retrieve a maximum value?
Which of the following is incorrect SQL?
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
What values does the count(*) function ignore?
Which SQL keyword is used to retrieve the highest value?