gpt4 book ai didi

mysql - Zend 语法中的 Sql 查询

转载 作者:行者123 更新时间:2023-11-29 13:30:50 24 4
gpt4 key购买 nike

如何在 Zend 中实现此功能...

   select name, comment_id, text, date, number
from user, comment, telephone
where user.user_id = comment.user_id
and telephone.telephone_id = comment.telephone_id
and telephone.number = 000;

谢谢

最佳答案

我不确定哪一列属于哪一个表,但如果我犯了错误,更改它很简单。 Zend 中的查询可以这样写:

$select = $db->select();
$select->from('user', array('name'));
$select->join('comment', 'user.user_id = comment.user_id', array('comment_id', 'text', 'date'));
$select->join('telephone', 'telephone.telephone_id = comment.telephone_id', array('number'));
$select->where('telephone.number = ?', '000');

我建议您阅读documentation能够轻松构建选择查询。

关于mysql - Zend 语法中的 Sql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19476275/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com