将 MySQL 字段设置为另一个字段
我有一个名为 description
的 MySQL 字段和一个名为 specs
的字段。它们需要相同,但我只填写了specs
。
我可以执行以下操作吗:更新产品集描述 = 规格;
?
I have a MySQL field called description
and a field called specs
. They need to be the same, but I only have specs
filled out.
Can I do something like: Update products set description = specs;
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
...会将表中每一行的
description
值设置为与specs
列中的值相同的值。这就是你想要的每张唱片吗?为什么要在
description
列中存储冗余数据?为什么不只使用specs
列,并从表中删除description
列?Using:
...will set the
description
value to the same value as in thespecs
column, on a row by row basis for every row in the table. Is that what you want for every record?Why do you want to store redundant data in the
description
column? Why not use only thespecs
column, and drop thedescription
column from the table?