Please enter your details here.
Which one is not part of the Database backup file?
What is the full form of SQL?
To Create a new database __________ Command is used
The result of a SQL SELECT statement is a ______.
Which of the following is the original purpose of SQL?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
What is the meaning of the “ORDER BY” clause in MySQL?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
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;
With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?
The SQL WHERE clause used for
Find all the cities whose humidity is 89
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
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?
What is the meaning of the “HAVING” clause in MySQL?
Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?
What is the significance of “ORDER BY” in the following MySQL statement?
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
The HAVING clause does which of the following?
Select two options which do not belong to the Purpose of Delete
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?
Which command is used to change the definition of a table 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?
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?
What can be the condition in the "WHERE" clause in a SQL query?
Which of the SQL statement is correct?
A subquery in an SQL SELECT statement is enclosed in
A subquery can be used anywhere an expression is allowed.
Where subqueries can not be used?
Which of the following statement(s) is TRUE regarding subqueries?
Which of the following is true about sub-queries?
A column with a Primary key has a Null value.
A ______ index is created based on only one table column.
A table contains more than one foreign key
Which of the following is correct DROP INDEX Command?
A column with a Unique key has duplicate values.
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.
In which two cases would you use an outer join? (Choose two.)
How many tables may include with a join?
Where are Joins used?
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?
What is the syntax for joining two tables? Pick Two
The SQL Statement
SELECT ROUND(45.926, -1) FROM DUAL;
Which of the following do you need to consider when you make a table in SQL?
The _____ aggregation operation adds up all the values of the attribute
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which SQL keyword is used to retrieve the highest value?