Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
SQL

SQL: Use Aggregate Functions for Data Analysis

- 05.07.26 - ErcanOPAK

📊 Aggregate Functions = Data Insights

Need totals, averages, counts? Aggregate functions summarize data. Essential for reporting and analytics.

📝 Basic Aggregates

SELECT 
    COUNT(*) AS total_rows,
    COUNT(DISTINCT column) AS distinct_values,
    SUM(amount) AS total_sum,
    AVG(amount) AS average,
    MIN(amount) AS min_value,
    MAX(amount) AS max_value,
    STDDEV(amount) AS std_dev
FROM orders;

-- With GROUP BY
SELECT 
    customer_id,
    COUNT(*) AS order_count,
    SUM(total) AS total_spent,
    AVG(total) AS avg_order_value
FROM orders
GROUP BY customer_id
ORDER BY total_spent DESC;

-- With HAVING (filter groups)
SELECT 
    customer_id,
    COUNT(*) AS order_count,
    SUM(total) AS total_spent
FROM orders
GROUP BY customer_id
HAVING COUNT(*) > 5 AND SUM(total) > 1000;

🎯 Analytical Queries

-- Monthly sales summary
SELECT 
    DATE_TRUNC('month', order_date) AS month,
    COUNT(*) AS order_count,
    SUM(total) AS revenue,
    AVG(total) AS avg_order_value,
    MIN(total) AS min_order,
    MAX(total) AS max_order
FROM orders
WHERE order_date >= '2024-01-01'
GROUP BY DATE_TRUNC('month', order_date)
ORDER BY month;

-- Product performance
SELECT 
    p.name AS product_name,
    COUNT(oi.product_id) AS times_ordered,
    SUM(oi.quantity) AS total_units_sold,
    SUM(oi.quantity * oi.price) AS total_revenue
FROM products p
JOIN order_items oi ON p.id = oi.product_id
GROUP BY p.id, p.name
HAVING COUNT(oi.product_id) > 0
ORDER BY total_revenue DESC;

-- Customer segmentation
SELECT 
    CASE 
        WHEN total_spent > 10000 THEN 'Premium'
        WHEN total_spent > 1000 THEN 'VIP'
        WHEN total_spent > 100 THEN 'Regular'
        ELSE 'Basic'
    END AS segment,
    COUNT(*) AS customer_count,
    SUM(total_spent) AS total_revenue,
    AVG(total_spent) AS avg_spent
FROM (
    SELECT 
        customer_id,
        SUM(total) AS total_spent
    FROM orders
    GROUP BY customer_id
) AS customer_spending
GROUP BY segment;

💡 Aggregate Tips

  • COUNT(*) counts all rows
  • COUNT(column) counts non-null values
  • DISTINCT removes duplicates
  • NULL values are ignored in AVG, SUM, etc.
  • Use HAVING for group filtering

“Aggregate functions summarize data. Totals, averages, counts — all in one query. Essential for analytics.”

— Data Analyst

Related posts:

NOT IN vs NOT EXISTS — One Can Return Wrong Results

SQL: Use CTEs (WITH Clause) for Readable Complex Queries

Unique Constraints in MS SQL Server to prevent duplications

Post Views: 0

Post navigation

.NET Core: Use Dependency Injection for Loose Coupling
C#: Use LINQ to Query Collections Efficiently

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com