如何将数据添加到现有表中的特定列?
如何将数据仅插入现有表中的一列?
我不希望其他专栏受到干扰或改变。
How can I insert data to only one column in an existing table?
I dont want other column get disturbed or altered..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找更新查询:
这只会将数据“插入”到单个列中,而其他所有内容都不会受到干扰。
如果您想从另一个表的结果进行更新,您也可以进行连接:
希望有帮助。您可能想尝试用更多信息来澄清问题。
I think you're looking for an update query:
That will only "insert" data into a single column while leaving everything else undisturbed.
If you want to update from the results of another table, you can also do joins:
Hope that helps. You might want to try clarifying the question with some more information.
如果您的意思是“更新”中的“插入”,那么
If you mean "insert" as in "update" then