Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このmysqlクエリをredbeanクエリに変換するのを手伝ってくれる人はいますか?
SELECT category,sum(price) from transaction GROUP BY category.
より良い変換は次のようになります。
$sql = "SELECT カテゴリ、合計 (価格) FROM トランザクション GROUP BY カテゴリ";
$transactions = R::getAll($sql);
何も変換する必要はありません。あなたはただ書く:
$transactions = R::get("SELECT category,sum(price) from transaction GROUP BY category");