将部分字符串字段(表 A 中)复制到由表 C 连接的新字段(表 B)中

发布于 2024-10-12 00:34:58 字数 417 浏览 0 评论 0原文

假设我在一个mysql数据库中:

  • 名为“user”的表,带有“id_user”和“extrafield”
  • 表,名为“connection”,带有“id_user”和“id_content”,
  • “user_content”

表名为“content”,带有“id_content”和 “user_content”里面有多个字段,例如:

<br />::field1::fieldvalue::/field1::<br />::field2::fieldvalue::/field2::<br />

从“user”中的“extrafield”内的“content”复制“field2”值的最佳查询是什么?

谢谢

Let's say i've in a mysql db:

  • table called "user" with "id_user" and "extrafield"
  • table called "connection" with "id_user" and "id_content"
  • table called "content" with "id_content" and "user_content"

Into "user_content" i've multiple fields inside like:

<br />::field1::fieldvalue::/field1::<br />::field2::fieldvalue::/field2::<br />

What's the best query to copy "field2" value from "content" inside "extrafield" in "user" ?

Thank you

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

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

发布评论

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

评论(1

情栀口红 2024-10-19 00:34:58
SET @user = 1;

UPDATE content
SET content.user_content = replace(content.user_content, 'field2', 
         (SELECT extrafield FROM user WHERE id_user = @user))
WHERE content.id_content 1;

此查询将为您进行替换。不过,您必须适当地连接表格。

SET @user = 1;

UPDATE content
SET content.user_content = replace(content.user_content, 'field2', 
         (SELECT extrafield FROM user WHERE id_user = @user))
WHERE content.id_content 1;

This query will do the replace for you. You have to join the tables appropriately though.

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