Zend 框架 MySQL 更新
我需要在 Zend 中执行这个简单的 mysql 查询;
"UPDATE `table` SET `field`='field'+1 WHERE `field`>'" . $var . "'"
我怎样才能用 Zend 更新来做到这一点?
$this->update($data, $where);
但我们没有数据,我们只有位置。
I need to execute this simple mysql query in Zend;
"UPDATE `table` SET `field`='field'+1 WHERE `field`>'" . $var . "'"
How can I do this with Zend update;
$this->update($data, $where);
But we hasn't data, we have only where.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不知道要更新什么,如何更新表。
顺便说一句,这是我在 Zend Framework 文档中找到的
How can you update a table if you don't know what are you going to update.
By the way, this is what I found in the Zend Framework Documentation