Zend Framework Multiple Table Query

Posted by Jeff on Stack Overflow See other posts from Stack Overflow or by Jeff
Published on 2010-04-28T22:00:12Z Indexed on 2010/04/28 22:07 UTC
Read the original article Hit count: 161

Filed under:
|
|
|

I am looking to execute this statement via Zend Framework. As I understand it, I can use Zend_Db_Select. Is it possible to use Zend_Db_Table?

Three tables: classes, students, and class_students

select classes.name, students.student_id, students.fname, students.lname from students, classes, class_students where class_students.student_id=students.student_id AND class_students.class_id=classes.class_id;

© Stack Overflow or respective owner

Related posts about zend

Related posts about framework