DBMS-Select Statement

DBMS-Select Statement

University

50 Qs

quiz-placeholder

Similar activities

PBD_Q_2

PBD_Q_2

University

50 Qs

Query Processing and Optimization

Query Processing and Optimization

University

50 Qs

Advance Database System

Advance Database System

University

49 Qs

Quiz 2 - Midterm

Quiz 2 - Midterm

University

50 Qs

Final Exam : PHP V.1

Final Exam : PHP V.1

University

50 Qs

FSWD (Jquery, PHP, MySql)

FSWD (Jquery, PHP, MySql)

University

52 Qs

TSW II intercorso

TSW II intercorso

University

49 Qs

SQL Keywords

SQL Keywords

University

55 Qs

DBMS-Select Statement

DBMS-Select Statement

Assessment

Quiz

Computers

University

Hard

Created by

KarunaiMuthu SriRam

Used 3+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT COUNT(*) FROM employees;

What does this query return?

The number of employees in the "employees" table.

The names of all employees in the "employees" table.

The average salary of employees.

An error because COUNT(*) is not a valid function.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT first_name || ' ' || last_name AS full_name FROM employees WHERE department_id = 30;

What does this query return?

The first name of all employees in department 30.

The last name of all employees in department 30.

The full name (concatenation of first and last names) of employees in department 30.

An error because the concatenation operator (||) is not allowed.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT AVG(salary) FROM employees GROUP BY department_id;

What does this query return?

The average salary of all employees.

The average salary for each department.

An error because you cannot use AVG() with GROUP BY.

The total salary for each department.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT employee_id, last_name FROM employees WHERE salary > 50000;

What does this query return?

All employee IDs and last names.

All employee IDs and last names of employees with a salary greater than $50,000.

An error because employee_id is not a valid column.

All employees with a salary greater than $50,000.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT DISTINCT department_id FROM employees;

What does this query return?

A list of all unique department IDs.

A list of all department IDs, including duplicates.

An error because DISTINCT cannot be used with SELECT.

A list of all employee IDs.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT employee_id, salary * 12 AS annual_salary FROM employees;

What does this query return?

The monthly salary of all employees.

The annual salary (12 times the monthly salary) of all employees.

An error because you cannot use arithmetic operations in SELECT.

The sum of all annual salaries.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Consider the following query:

SELECT department_id, COUNT(*) FROM employees GROUP BY department_id HAVING COUNT(*) > 5;

What does this query return?

The number of employees in each department.

An error because HAVING cannot be used with COUNT(*).

The number of departments with more than 5 employees.

The department IDs with more than 5 employees.

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?