卡桑德拉更新专栏

发布于 2024-10-12 07:18:26 字数 323 浏览 4 评论 0原文

我如何更新 cassandra 数据库中的列?

columnfam{
  username{
    name:edds,
    surname:surname,
    email:[email protected]
  }
}

例如我需要更新姓氏?

我使用 PHP 客户端 PHPCASSA。

谢谢

how can i update column in cassandra database??

columnfam{
  username{
    name:edds,
    surname:surname,
    email:[email protected]
  }
}

for example i need update surname??

im using php client PHPCASSA.

thanx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

2024-10-19 07:18:26

正如 Octopus-Paul 所说,更新与插入相同。不过,在写作之前没有必要先阅读。你可以这样做:

$column_family->insert('username', array('surname' => $new_surname));

As Octopus-Paul says, updates are the same as inserts. There's no need to read before writing, though. You can just do this:

$column_family->insert('username', array('surname' => $new_surname));
第七度阳光i 2024-10-19 07:18:26

看看这里 cassandra-internals-writing
(参见评论 14 和 15)。我猜想,如果您从数据库中检索数据,在 PHP 中修改数据并重新插入该数据,它将得到更新(如果您的数据有 UUID,它将被更新 - 这只是一个假设 - 但请尝试一下)

Have a look here cassandra-internals-writing
(Look at comments 14 and 15). I guess that if you retrieve data from your database, modify your data in PHP and reinsert that that back it will get updated (if your data has an UUID it will be updated - This is just an assumption -but give it a try)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文