Success Forge SQL Server Quiz

Success Forge SQL Server Quiz

Professional Development

15 Qs

quiz-placeholder

Similar activities

DDL - Create

DDL - Create

Professional Development

10 Qs

MySQL Webinar

MySQL Webinar

Professional Development

10 Qs

MY SQL Chapter-3

MY SQL Chapter-3

Professional Development

20 Qs

Database Quiz_11 dec

Database Quiz_11 dec

Professional Development

20 Qs

Microsoft SQL Server

Microsoft SQL Server

12th Grade - Professional Development

10 Qs

MySQL

MySQL

Professional Development

20 Qs

DataBase Quiz - CME Workshop

DataBase Quiz - CME Workshop

Professional Development

20 Qs

SQL JOINs Worksheet (Questions 3-5)

SQL JOINs Worksheet (Questions 3-5)

Professional Development

16 Qs

Success Forge SQL Server Quiz

Success Forge SQL Server Quiz

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Aniket Molke

Used 3+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which SQL clause is used to filter groups of rows after they have been grouped by GROUP BY clause?

ORDER BY

HAVING

WHERE

DISTINCT

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which SQL keyword is used to retrieve data from a database?

GET

SELECT

FETCH

RETRIEVE

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

How would you select all employees with salaries between 4000 and 7000 in SQL?

SELECT * FROM Employees WHERE salary >= 4000 AND salary <= 7000;

SELECT * FROM Employees WHERE salary BETWEEN 4000 AND 7000;

Both 1 and 2

None of the above

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will the following query do?
SELECT department, MAX(salary) FROM Employees GROUP BY department;

Returns the highest salary in the company

Returns the highest salary for each department

Groups all employees by salary

Returns the total salary in each department

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will the following SQL statement return?
SELECT AVG(salary) FROM Employees WHERE department = 'Marketing';

The total salary of Marketing department employees

The average salary of all employees

The average salary of Marketing department employees

The sum of salaries in all departments

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

In a LEFT JOIN, what happens to rows in the left table when no corresponding match in the right table?

They are excluded from the results

They appear with NULL values for columns from the right table

They are duplicated based on the rows in the right table

They are included only if specified

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which type of join includes only rows with matching values from both tables?

LEFT JOIN

INNER JOIN

FULL JOIN

RIGHT JOIN

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?