こんにちは。小川です。 今回はDoctrineのSELECT句と集計関数の扱い方などについて書いていこうと思います。 始める前に今回使うデータベースのスキーマとサンプルとなるフィクスチャデータを書いておきます。一応symfony 1.2上で使うことを前提としています。 # config/doctrine/schema.yml User: actAs: Timestampable: columns: id: type: integer(4) notnull: true primary: true autoincrement: true name: type: string(255) notnull: true Account: actAs: Timestampable: columns: id: type: