Zend 框架 MySQL 更新

发布于 2024-09-15 14:41:40 字数 245 浏览 7 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪化雨蝶 2024-09-22 14:41:40

如果您不知道要更新什么,如何更新表。

顺便说一句,这是我在 Zend Framework 文档中找到的

$table = new Bugs();
$data = array(
'updated_on' => '2007-03-23',
'bug_status' => 'FIXED'
);

$where = $table->getAdapter()->quoteInto('bug_id = ?', 1234);
$table->update($data, $where);

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

$table = new Bugs();
$data = array(
'updated_on' => '2007-03-23',
'bug_status' => 'FIXED'
);

$where = $table->getAdapter()->quoteInto('bug_id = ?', 1234);
$table->update($data, $where);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文