如何在 Zend 中连接两个表并读取结果数据
我有以下查询:
$usersTable = new Users();
$rowset = $usersTable->select()
->setIntegrityCheck(false)
->where( 'id = ?', $userId )
->join( 'Books', 'Books.userid = Users.id' );
但是,我一生都无法弄清楚如何读取生成的行集(与用户关联的书籍列表)。
我会做以下事情吗?
foreach ($book in $rowset->Books) {
print_r($book["book_name"]);
}
I have the following query:
$usersTable = new Users();
$rowset = $usersTable->select()
->setIntegrityCheck(false)
->where( 'id = ?', $userId )
->join( 'Books', 'Books.userid = Users.id' );
However, I can't for the life of me figure out how to read the resulting rowset (the list of books associated with the user).
Would I do the following?
foreach ($book in $rowset->Books) {
print_r($book["book_name"]);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你所谓的$rowset实际上是一个sql表达式。
这应该有效:
What you call $rowset is actually an sql expression.
This should work:
尝试这样的事情:
这会出现在你的模型中吗?
Try something like:
Is this going in your model?