Please enter your details here.
Which of the following is the original purpose of SQL?
Which of the following is a valid SQL type?
To Create a new database __________ Command is used
What is the main language of Transact-SQL?
What is the SQL query used to retrieve all the data from the customer table?
What is the meaning of the “ORDER BY” clause in MySQL?
Which of the SQL statement is correct?
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?
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 SQL keyword is used to sort the result-set?
Find the names of the countries whose condition is sunny
Identify the average salary of the jobs 'MANAGER' and 'ANALYST'. Display job, average salary if the identified average salary is more than 1500.
Which SQL Query is used for updating the ContactName in the Customers table?
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''?
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?
Analyze the following Query and Mark the answer whether it's a correct query or not?
How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?
How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?
Which syntax is used for Drop Index (idx_pname) from the Person table in MYSQL?
You can delete a view with _____________ Command.
The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
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?
Select ID, GPA from student grades order by GPA ____________.
In order to give only 10 ranks, on the whole, we should use.
Analyze the following Query and Mark the answer whether it's the correct query or not ?
Analyse the following Query and Mark the answer whether it's the correct query or not?
Which one is not used in SQL?
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;
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?
Where subqueries can not be used?
Which of the following statements are TRUE regarding subqueries?
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 column with a Primary key has a Null value.
How many types of indexes are there in the SQL server?
Which one of the following can be taken as a Primary Key?
Which of the following is not a Key in SQL Server?
By default, which key creates Clustered index?
Join is different from Inner join.
Where are Joins used?
What is the function of Full Outer Join in SQL?
Below image depicts:
Choose the correct query for the below scenario.
Alias is used in Joins.
Statement: Join for each row of one table to every row of another table.
Which Join?
How many tables may include with a join?
Choose the query that matches the above image.
In the absence of WHERE condition this JOIN will function like a _______.
“COUNT” keyword belongs to which categories in MySQL?
Which of the following do you need to consider when you make a table in SQL?