Languages
[Edit]
EN

MySQL - count rows in column

0 points
Created by:
Veer-Ahmad
487

In this article, we would like to show you how to count rows in a column in MySQL.

Quick solution:

SELECT COUNT(`column_name`)
FROM `table_name`;

Practical example

To show how to count distinct values, we will use the following table:

MySQL - example data used to count rows in column
MySQL - example data used to count rows in column

Note:

At the end of this article you can find database preparation SQL queries.

Example

In this example, we will count the number of unique countries in users table.

Query:

SELECT COUNT(DISTINCT(`country`)) AS `unique_countries`
FROM `users`;

Output:

MySQL - count distinct values result
MySQL - count distinct values result

 

Database preparation

create_tables.sql file:

CREATE TABLE `users` (
	`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
	`name` VARCHAR(50) NOT NULL,
	`surname` VARCHAR(50) NOT NULL,
	`email` VARCHAR(50),
	PRIMARY KEY (`id`)
);

insert_data.sql file:

INSERT INTO `users`
	( `name`, `surname`, `email`)
VALUES
	('John', 'Stewart', 'john@email.com'),
	('Chris', 'Brown', NULL),
	('Kate', 'Lewis', NULL),
	('Ailisa', 'Gomez', 'ailisa@email.com'),
	('Gwendolyn', 'James', NULL),
	('Simon', 'Collins', NULL),
	('Taylor', 'Martin', NULL),
	('Andrew', 'Thompson', 'andrew@email.com');

Alternative titles

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join