私はZendの初心者です。私のモデル Default_Model_ApplicationMapper では、db-table Application_Model_DbTable_Application を使用してそのようなクエリを実行したい
"Select * from application as a, category as c, user as u where a.user_id = u.id and a.category_id = c.id";
私はこれを試しました:
$table = new Application_Model_DbTable_Application();
$select = $table->select()->from(array('a' => 'application'))
->from(array('c' => 'category'))
->from(array('u' => 'user'))
->where('a.user_id = u.id and a.category_id = c.id');
もちろん、これは機能しません。これで私を助けてもらえますか?