STRUCTURED QUERY LANGUAGE TEST

Progress

1.

Which one is a non-relational database?

2.

Which is the subset of SQL command used to manipulate Database structures, including tables?

3.

What is the full form of SQL?

4.

What is the meaning of a Database?

5.

In SQL, which command is used to change a table's storage characteristics?

6.

What is the significance of “ORDER BY” in the following MySQL statement?

SELECT emp_id, fname, lname  
FROM person    
ORDER BY emp_id;  

7.

If you don't specify ASC or DESC after a SQL ORDER BY clause, the following is used by default

8.

Which command is used to change the definition of a table in SQL ?

9.

What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?

SELECT d.name, COUNT (emp_id) emp_no  
FROM department d INNER JOIN Employee e  
ON d.dept_id=e.emp_id      
GROUP BY d.name      
HAVING COUNT (emp_id)>2    

10.

With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"?

11.

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?

12.

The _______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.

13.

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;

14.

How to delete the Customer name of Alfreds Futterkiste (CustomerID is 1) from the Customers table?

15.

Analyze the following Query and Mark the answer whether it's the correct query or not ?

select deptName
from Employee
having avg (salary)
group by deptName
where sex = 'M'

16.

What is the significance of the statement of the below query?

SELECT branch_name, COUNT (DISTINCT customer_name)     
FROM depositor, account           
WHERE depositor.account_number = account.account_number   
GROUP BY branch_id          

17.

Which of the following query is correct for selecting the name of the staff from ''staffinfo'' table where salary is 10000 or 25000?

18.

How to create index idx_pname for multiple columns (Lastname, Firstname) in a Person table?

19.

Select two options which do not belong to the Purpose of Delete

20.

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''?

21.

Find all the cities whose humidity is 89

22.

Analyze the following Query and Mark the answer whether it's a correct query or not?

Select OrderID, Shipdate
From Orders  
Where CustomerID=20
Order by Shipdate;

23.

Analyse the following Query and Mark the answer whether it's the correct query or not?

SELECT Name, Age, Firstname, Lastname
FROM EMPLOYEE     
GROUP BY NAME, SALARY;  

24.

Select ID, GPA from student grades order by GPA ____________.

In order to give only 10 ranks, on the whole, we should use.

25.

What can be the condition in the "WHERE" clause in a SQL query?

26.

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?

27.

Find the name of these cities with temperature and condition whose condition is neither sunny nor cloudy

28.

Can you validate the statement?

"ORDER BY" can only be used by WHERE Clause.

True or False?

29.

What is the meaning of the “ORDER BY” clause in MySQL?

30.

Which of the SQL statement is correct?

31.

What is "Subquery"?

32.

Which of the following statement(s) is TRUE regarding subqueries?

33.

Which of the following multi-row operators can be used with a sub-query?

34.

Which of the following clause is mandatorily used in a sub-query?

35.

A subquery in an SQL SELECT statement is enclosed in

36.

A Key which is a set of one or more columns that can identify a record uniquely is called?

37.

Student (ID, Name, Dept_name, Total_credit)

In this above query which attribute form the Primary Key?

38.

Can you validate the statement?

We can use the index on columns that contain a high number of NULL values.

True or False?

39.

Which key accepts multiple NULL values?

40.

Can you validate the statement?

A table contains more than one foreign key

True or False?

41.

Analyze the following tables and output and choose the correct query to achieve the output.

42.

Choose the query that matches the above image.

43.

Which type of join is not desirable for retrieval?

44.

Evaluate this SQL statement:

SELECT employee_id, e.department_id, department_name, salary
FROM employees e, departments d  
WHERE e.department_id = d.department_id;  

Which SQL statement is equivalent to the above SQL statement? 

45.

What is the function of Full Outer Join in SQL?

46.

List all orders, showing order number, customer name and credit limit of a customer.

Orders Table:  
Order_Number, Customer, Product_Amount
Customers Table:  
Customer_Number, Customer_Name, Credit_Limit

 Which of the below query satisfy the above question?

47.

What are the joins available in SQL?

48.

What is the syntax for joining two tables? Pick Two

49.

Analyze the following tables and output and choose the correct query to achieve the output.

50.

Can you validate the statement?

Alias is used in Joins.

True or False?

51.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT MAX(Salary) from Salesemployee 
WHERE Salary >=2500 and Dept = 'Sales' ;

 

52.

Which SQL keyword is used to retrieve the highest value? 

53.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT SUM(Salary) from Salesemployee 
where Name = 'Tom';  

 

54.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT Count(Salary) from Salesemployee 
where name Like 'S%' and Dept ='HR';

 

55.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT Count(*) from Salesemployee 
WHERE Salary >=500 and Dept = 'Marketing';

 

56.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT Count(Salary) from Salesemployee 
where name Like 'S%';

 

57.

Which among the following belongs to an “aggregate function”?

58.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT Count(*) from Salesemployee 
WHERE Salary >=500 and Dept = 'Sales';

 

59.

Use below table (Salesemployee) and answer the following question
What is the output of following query ?
SELECT Count(*) from Salesemployee 
WHERE Salary >500;  

 

60.

“COUNT” keyword belongs to which categories in MySQL?

Assessment complete! Thank you for you time.
We are redirecting you to the result page, Please click on 'SUBMIT'