alephtools / sqlbuilder
The library to build plain SQL.
Installs: 5 886
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 3
Open Issues: 0
Requires
- php: >=8.1
- ext-json: *
Requires (Dev)
- friendsofphp/php-cs-fixer: 3.*
- phpunit/phpunit: 10.*
- psalm/plugin-phpunit: 0.*
- vimeo/psalm: 5.*
This package is auto-updated.
Last update: 2025-03-21 00:03:10 UTC
README
The library bases on two ideas:
- an SQL statement expressed with this library should be similar to the statement itself;
- flexible combination of statement components.
Thus, using this library you get simple but, at the same time, powerful tool to build SQL statements in flexible and intuitive way.
use AlephTools\SqlBuilder\PostgreSql\SelectStatement; use AlephTools\SqlBuilder\Sql\Expression\ConditionalExpression; $st = (new SelectStatement()) ->select([ 'u.id', 'u.name', 'company' => 'c.name', 'unreadMessageCount' => (new SelectStatement()) ->select('COUNT(*)') ->from('user_messages', 'm') ->where('m.user_id = u.id') ->andWhere('m.read_at IS NULL') ]) ->from('users u') ->innerJoin('companies c', 'c.id = u.company_id') ->where('u.deleted_at IS NULL') ->andWhere((new ConditionalExpression()) ->where('u.roles', 'IN', ['ADMIN', 'RESELLER']) ->orWhere( (new SelectStatement()) ->select('COUNT(*)') ->from('user_contacts uc') ->where('uc.user_id = u.id'), '>', 5 ) ); // Outputs: // SELECT // u.id, u.name, c.name company, // (SELECT COUNT(*) FROM user_messages m WHERE m.user_id = u.id AND m.read_at IS NULL) unreadMessageCount // FROM users u // INNER JOIN companies c ON c.id = u.company_id // WHERE // u.deleted_at IS NULL AND ( // u.roles IN (:p1, :p2) OR // (SELECT COUNT(*) FROM user_contacts uc WHERE uc.user_id = u.id) > :p3 // ) echo $st->toSql(); // Outputs: // ['p1' => 'ADMIN', 'p2' => 'RESELLER', 'p3' => 5] print_r($st->getParams()); // Executes statement if StatementExecutor is defined, otherwise an exception is thrown $rows = $st->rows();
Installation
composer require alephtools/sqlbuilder