To group rows into subgroup by one or more values of columns we use MySQL GROUP BY.
Suppose in user table same country name exists for many times for different user. So if we use GROUP BY for country column to a SELECT query then only unique country will be listed.
SELECT * FROM users GROUP BY user_country;
It works same like DISTINCT operator. But the different is aggregate functions like SUM, AVG, MAX, MIN and COUNT are used by this clause.
The aggregate functions is used to perform calculation on each subgroup and return in a single value result for each subgroup.
SELECT COUNT(*) FROM users GROUP BY user_country;
will show the no of users for each unique country.
MySQL HAVING clause is used to filter conditions for group of rows. HAVING clause is used with the GROUP BY clause.
SELECT * FROM users GROUP BY user_country HAVING age > 18;
When you are looking to apply for a mortgage the one thing that most people…
Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…
Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…
Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared Every exchange claims to have…
One of the world's busiest travel hubs, New York City relies heavily on coach bus…
Whether large scale or small scale, many businesses want to market their services or products…