ホームページ  >  記事  >  バックエンド開発  >  スモールスウールDB

スモールスウールDB

PHPz
PHPzオリジナル
2024-08-16 20:34:301069ブラウズ

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%')
    ))
;

パッケージリスト: https://packagist.org/packages/small/swoole-db
git : https://git.small-project.dev/lib/small-swoole-db

以上がスモールスウールDBの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。