Please enter your details here.
What is the full form of SQL?
Which of the following database cannot be dropped?
Which one is a non-relational database?
Which of the following is not a database object?
Which of the following is the original purpose of SQL?
Analyse the following Query and Mark the answer whether it's the correct query or not?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
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?
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?
Which of the SQL statement is correct?
Syntax for create a views is _______
You can delete a view with _____________ Command.
If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default
What is the meaning of the “HAVING” clause in MySQL?
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;
What is the meaning of the “ORDER BY” clause in MySQL?
Can you validate the statement?
"ORDER BY" can only be used by WHERE Clause.
True or False?
Analyze the following Query and Mark the answer whether it's a correct query or not?
What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
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?
Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy
Select ________ dept_name from instructor;
Here which of the following displays the unique values of the column?
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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''?
Which one is not used in SQL?
Which command is used to change the definition of a table in SQL ?
The SQL WHERE clause used for
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
Which of the following operators cannot be used in a sub-query?
Which of the following is true about sub-queries?
Where subqueries can not be used?
What is "Subquery"?
Which of the following clause is mandatorily used in a sub-query?
Which key accepts multiple NULL values?
How many types of indexes are there in the SQL server?
Which of the following do you need to consider when you make a table in SQL?
A Key which is a set of one or more columns that can identify a record uniquely is called?
A ______ index is created based on only one table column.
Join is different from Inner join.
How many tables may include with a join?
Below image depicts:
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.
Alias is used in Joins.
Where are Joins used?
What is the function of Full Outer Join in SQL?
What are the joins available in SQL?
Which among the following belongs to an “aggregate function”?
Which of the following is incorrect SQL?
In SQL - these functions - AVG, MIN, MAX, COUNT are called as ___________
Which SQL keyword is used to retrieve the highest value?
Which of the following set of operations is a valid set of Aggregate operations in SQL?
What values does the count(*) function ignore?