Hey, folks! In this article, we will be focusing on SQL SELECT statement along with COUNT() function.
SQL SELECT statement helps us select and display the data values from the particular table of the database.
Syntax:
Example:
SELECT * statement helps select all the data values from the provided table.
Output:
SQL COUNT() function counts the total number of rows present in the database.
Syntax:
Example:
In this example, we have displayed the count of all the data rows under the column - ‘city’ of table - ‘Info’.
Output:
You can use the SQL SELECT statement with the COUNT() function to select and display the count of rows in a table of a database.
Along with this, we can club SQL SELECT statement with COUNT() function in various different ways.
Having understood the working of SQL SELECT COUNT(), let us now understand different variations associated with the same through examples.
To display the variations in SQL SELECT COUNT(), we have used SQL CREATE query to create a Table and SQL INSERT query to input data to the database.
We will be using the below table and its data in the further examples.
Output:
SQL SELECT COUNT() can be clubbed with SQL WHERE clause.
Using the WHERE clause, we have access to restrict the data to be fed to the COUNT() function and SELECT statement through a condition.
Example:
Output:
SQL SELECT statement can be used along with COUNT(*) function to count and display the data values.
The COUNT(*) function represents the count of all rows present in the table (including the NULL and NON-NULL values).
Example:
Output:
The DISTINCT clause helps exclude the redundant data and displays only the unique values from the selected column.
SQL SELECT COUNT() function can be used along with DISTINCT clause to count and display the number of rows representing unique(non-repeated) values.
Example:
Output:
SQL SELECT COUNT() function can be clubbed with GROUP BY and HAVING clause to add conditions before the selection of data as well as grouping of data rows by a particular column value.
Example:
Output:
By this, we have come to an end of this topic. Please feel free to comment below in case you come across any doubt.
For more such posts related to SQL, please do visit SQL JournalDev.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.