将部分字符串字段(表 A 中)复制到由表 C 连接的新字段(表 B)中
假设我在一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此查询将为您进行替换。不过,您必须适当地连接表格。
This query will do the replace for you. You have to join the tables appropriately though.