| .. | |||||
| JoinType.php | |||||
| Math.php | |||||
| Operator.php | |||||
| Type.php |
<?php
namespace Give\Framework\QueryBuilder\Types;
/**
* @since 2.19.0
*/
class Math extends Type
{
const SUM = 'SUM';
const MIN = 'MIN';
const MAX = 'MAX';
const COUNT = 'COUNT';
const AVG = 'AVG';
}
| .. | |||||
| JoinType.php | |||||
| Math.php | |||||
| Operator.php | |||||
| Type.php |