sql >> データベース >  >> RDS >> Mysql

PhalconPHPデータベースがORMに参加

    モデルでは、たとえば、メソッドを作成する必要があります

    /**
     * Returns users which doesn't belong to any organization.
     *
     * @return mixed
     */
    public static function getSomething()
    {
        $query = User::query()
            ->columns(__NAMESPACE__ . '\Pages.*')
            ->leftJoin(__NAMESPACE__ . '\Sections', __NAMESPACE__ . '\Pages.page_section_id = ps.section_id', 'ps')
            ->where('do something')
            ->execute();
    
        if ($query->count()) {
            return $query;
        }
    
        return false;
    }
    



    1. mysqliクエリは最初の行のみを返します

    2. データブロックのダンプ

    3. MySQLデータベース構造をExcelファイルにエクスポートするにはどうすればよいですか?

    4. Mysql-カスタムで注文しますか?