首页  >  文章  >  后端开发  >  小Swoole数据库

小Swoole数据库

PHPz
PHPz原创
2024-08-16 20:34:301063浏览

Small Swoole Db

Small Swoole Db 2.3 引入左连接:

$selector = (new TableSelector('user'))
    ->leftJoin('post', 'messageOwner', 'message')
;

$selector->where()
    ->firstCondition(new Condition(
        new ConditionElement(ConditionElementType::var, 'name', 'user'),
        ConditionOperator::equal,
        new ConditionElement(ConditionElementType::const, 'john')
    ))->andCondition(new Condition(
        new ConditionElement(ConditionElementType::var, 'subject', 'message'),
        ConditionOperator::like,
        new ConditionElement(ConditionElementType::const, '%hiring%')
    ))
;

packagist:https://packagist.org/packages/small/swoole-db
git : https://git.small-project.dev/lib/small-swoole-db

以上是小Swoole数据库的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn