w3resource

PostgreSQL Basic SELECT Statement: Get the number of employees working with the company


9. Write a query to get the number of employees working with the company.

Sample Solution:

Code:

-- Counting the total number of records (rows) in the employees table
SELECT COUNT(*) 
-- Selecting data from the employees table
FROM employees;

Explanation:

  • This SQL code counts the total number of records (rows) in the "employees" table.
  • The COUNT(*) function is used to count all records in the table.
  • The result set will contain a single column with the total count of records in the employees table.

Sample table: employees


Output:

pg_exercises=# SELECT COUNT(*)
pg_exercises-# FROM employees;
 count
-------
   107
(1 row)

Practice Online



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to get the average salary and number of employees are working
Next: Write a query to get the unique number of designations available in the employees table.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/postgresql-exercises/basic/basic-select-statement-exercise-9.php