w3resource

SQL Exercises: Find number of customers have listed their names

SQL Aggregate Functions: Exercise-4 with Solution

From the following table, write a SQL query to count the number of customers. Return number of customers.

Sample table: customer


Sample Solution:

SELECT COUNT(*) 
FROM customer;

Output of the Query:

count
8

Code Explanation:

The said SQL query that retrieve the total number of rows in the 'customer' table. The "SELECT COUNT(*)" statement specifies that the number of rows in the table should be counted. The "(*)" is a wildcard that counts all rows, regardless of the specific columns and their values.
The result of this query will be a single value that represents the total number of rows in the 'customer' table.

Relational Algebra Expression:

Relational Algebra Expression: Find number of customers have listed their names.

Relational Algebra Tree:

Relational Algebra Tree: Find number of customers have listed their names.

Explanation:

Syntax of find number of customers have listed their names

Visual presentation:

Find number of customers have listed their names

Practice Online


Query Visualization:

Duration:

Query visualization of Find number of customers have listed their names - Duration

Rows:

Query visualization of Find number of customers have listed their names - Rows

Cost:

Query visualization of Find number of customers have listed their names - Cost

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

Previous SQL Exercise:Find the number of salesmen for each customer.
Next SQL Exercise: How many customers get a grade for their performance.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

SQL: Tips of the Day

How to drop all tables from a database with one SQL query?

USE Databasename

SELECT  'DROP TABLE [' + name + '];'
FROM    sys.tables

Ref: https://bit.ly/3PIUmPL

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook