I understand the use of Zend_Table and can get data using Zend functions from the table associated with this class. For example, I have a video table, and in another table I have a connection between the video and what category it is in.
Itβs a little exaggerated how to activate the selection within the framework:
SELECT * FROM video,category WHERE category.category_id = 3 AND video.id = category.video_id
I want to do this in a video model that refers to a video table.
Jugger0
source share