Using Functions - Aggregation

This guide is for Pionia Shop dashboards and reports — counting open tasks per project, summing story points, and building HAVING clauses for Pionia Shop on port 8000.

What you will learn

  • Run count, sum, avg, min, and max on products and projects
  • Chain conditions before terminal aggregate methods
  • Build complex filters with the Agg builder
Before you start

How it works

table('products')  →  count / sum / avg  →  single scalar result
table('products')  →  filter(Agg::builder()->…->build())  →  rows or aggregates

v3 uses table() and namespaces under Pionia\Porm\. Examples below use table('products') and table('customers').

Introduction

This section covers database functions that can be used to aggregate data in the database. Aggregation functions are used to perform calculations on the data in the database. These functions can be used to calculate the sum, average, minimum, maximum, and count of the data in the database.

Inbuilt Aggregation Functions

Some common aggregation functions have already been implemented in PORM. These functions can be used to perform calculations on the data in the database directly.

count

The count function is used to count the number of records in the database. This function can be used to count the number of records in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->count(); // select count(*) from tasks

You can also provide a column name to count the number of records in the database that have a value in the specified column.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->count('priority'); // select count(priority) from tasks

You can also provide conditions to count the number of records in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->count('priority', ['priority' => 10]); // select count(*) from tasks where priority = 10

The count function returns the number of records in the database that meet the specified conditions.

sum

The sum function is used to calculate the sum of the values in a column in the database. This function can be used to calculate the sum of the values in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->sum('priority'); // select sum(priority) from tasks

You can also provide conditions to calculate the sum of the values in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->sum('priority', ['priority' => 10]); // select sum(priority) from tasks where priority = 10

The sum function returns the sum of the values in the column in the database that meet the specified conditions.

All methods that take in a condition can be called after the “where” method. This is because the “where” method is used to build the where clause for the query.

avg

The avg function is used to calculate the average of the values in a column in the database. This function can be used to calculate the average of the values in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->avg('priority'); // select avg(priority) from tasks

You can also provide conditions to calculate the average of the values in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->avg('priority', ['priority' => 10]); // select avg(priority) from tasks where priority = 10

The avg function returns the average of the values in the column in the database that meet the specified conditions.

max

The max function is used to calculate the maximum value in a column in the database. This function can be used to calculate the maximum value in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->max('priority'); // select max(priority) from tasks

You can also provide conditions to calculate the maximum value in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->max('priority', ['priority' => 10]); // select max(priority) from tasks where priority = 10

The max function returns the maximum value in the column in the database that meet the specified conditions.

min

The min function is used to calculate the minimum value in a column in the database. This function can be used to calculate the minimum value in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->min('priority'); // select min(priority) from tasks

You can also provide conditions to calculate the minimum value in a column in the database that meet certain conditions.


use Pionia\Porm\Database\Aggregation\Agg;

table('products')->min('priority', ['priority' => 10]); // select min(priority) from tasks where priority = 10

The min function returns the minimum value in the column in the database that meet the specified conditions.

All the above methods query the database and return the result. Therefore, you should always call these methods last.

Using the Agg Builder

We have also put aside a builder class that can be used to build more complex aggregation queries. The Agg builder comes with a number of methods to cover your aggregation needs.

Initializing the Agg Builder

To initialize the Agg builder, you can use the builder method.

You must finally call the build method to get the actually build your generated aggregates.


use Pionia\Porm\Database\Aggregation\Agg;

$agg = Agg::builder()
// add here your aggregation functions
    ->build();

Agg builder comes with a number of methods that can be used to build the aggregation query. They include

random


use Pionia\Porm\Database\Aggregation\Agg;

$agg = Agg::builder()
    ->random('name', 'names') // rand(names) as names
    ->build();

avg


use Pionia\Porm\Database\Aggregation\Agg;

$agg = Agg::builder()
    ->avg('priority', 'average_priority') // avg(priority) as average_priority
    ->build();

compare

Compare the value of two columns in the database. In comparison we use operators like =, >, <, !=.


use Pionia\Porm\Database\Aggregation\Agg;

$agg = Agg::builder()
    ->columnsCompare('story_points', '>', '10') // story_points > 10
    ->build();

like

Used to add a like condition to a query


$user = table("products")
          ->get(Agg::builder()
                ->like('title', $name)
                ->build()
          );

          // select * from tasks where title like '%$name%'

notLike

Used to add a not like condition to a query


$user = table("products")
          ->get(Agg::builder()
                ->notLike('title', $name)
                ->build()
          );

          // select * from tasks where title not like '%$name%'

div

Used to divide a column by a certain value in the database


$user = table("products")
            ->get(Agg::builder()
                ->div('total', 5)
                ->build()
            );

// select total/5 from tasks

between

Adds a between check on a column. It checks if the value of the given column is between two given points.


$results = table("products")
    ->where(Agg::builder()
        ->between('id', [1, 10])
        ->build()
    )->all();

// select * from tasks where id between 1 and 10

notBetween

Checks if the value of the given column is not between the given points.

$results = table("products")
    ->where(Agg::builder()
        ->notBetween('id', [1, 10])
        ->build()
    )->all();

jsonified

Jsonify the given value and assigns it to the given column.


table("products")
            ->filter(Agg::builder()
                ->jsonified('someAlias', ['x'=>1, 'y'=>5])
                ->build()
            )->all();

// select JSON('x', 1, 'y', 5) as someAlias from tasks

of

Multiplies a column by a certain value in the database


table("products")
            ->filter(Agg::builder()
                ->of('priority', 10)
                ->build()
            )->all();

// select someAlias*10 from tasks

minus

Subtracts a column by a certain value in the database


table("products")
            ->filter(Agg::builder()
                ->minus('priority', 10)
                ->build()
            )->all();

// select someAlias-10 from tasks

plus

Adds a column by a certain value in the database


table("products")
            ->filter(Agg::builder()
                ->plus('priority', 10)
                ->build()
            )->all();

// select someAlias+10 from tasks

eq

Opposite of eq. Checks if the value of the given column is equal to the given value.


table("products")
            ->filter(Agg::builder()
                ->eq('priority', 10)
                ->build()
            )->all();

// select someAlias=10 from tasks

neq

Opposite of eq. Checks if the value of the given is not equal to the given value.


table("products")
            ->filter(Agg::builder()
                ->neq('priority', 10)
                ->build()
            )->all();

// select someAlias!=10 from tasks

now

Assigns the current timestamp to the given alias or column.


table("products")
        ->update(Agg::builder()->now("updated_at")->build(), 1); // update tasks set updated_at = now() where id =1

lt

Check if the column value is less than the given value.

table("products")
    ->where(Agg::builder()->lt('priority', 20)->build())
    ->all();

lte

Checks if the column value is less than or equal to the given value.


table("products")
    ->where(Agg::builder()->lte('priority', 20)->build())
    ->all();

gt

Checks if the column value is greater than the given value.


table("products")
            ->where(Agg::builder()->gt('priority', 20)->build())
            ->all();

gte

Checks if the column value is greater than or equal the given value.


table("products")
            ->where(Agg::builder()->gte('priority', 20)->build())
            ->all();

uuid

This can be used in two ways. The first way is where a uuid is provided and the other way is where you want to sign a unique random uuid to a column.


$agg = Agg::builder()->uuid('code')->build() // code = uuid()

// or with an existing one.

$agg = Agg::builder()->uuid('code', $myCoolUuid)->build() // code = '$myCoolUuid'

max()

Gets the maximum value of the given column and assigns it to the given alias


$agg = Agg::builder()->max('maxPriority', 'priority')->build() // MAX(priority) as maxPriority

min()

Gets the minimum value of the given column and assigns it to the given alias


$agg = Agg::builder()->min('minPriority', 'priority')->build() // MIN(priority) as minPriority

sum()

Gets the sum of the given column and assigns it to the given alias.


$agg = Agg::builder()->sum('totalPoints', 'story_points')->build() // SUM(story_points) as totalPoints

regex

If all above don’t work for you, you can use this aggregation function to provide your own regular expression that the db should check against.


$agg = Agg::builder()->regex('name', '^d')->build() // name ~ '^d'

Chaining multiple

You can chain as many aggregations as you with till you call the build() method.


$agg = Agg::builder()
    ->regex('name', '^d')
    ->gte('priority', 10)
    ->build();

    // name ~ '^d' and priority >= 10

Common mistakes

  • Chaining methods after count() or sum() — aggregates execute immediately; start a new table('products') chain for the next query.
  • Using count('priority') when you mean count() with a WHERE — non-null column counts differ from row counts on Pionia Shop boards.
  • Building Agg regex from client input — never pass unsanitized search strings into Agg::builder()->regex().
  • Forgetting build() on Agg chains — incomplete clauses silently produce empty WHERE arrays in ProductService.

What’s next

WHERE DSL

Operators Agg complements.

Pagination

total_count for list endpoints.

API reference

Aggregate method signatures.