将 MySQL 字段设置为另一个字段

发布于 2024-10-02 02:27:28 字数 157 浏览 3 评论 0原文

我有一个名为 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 技术交流群。

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

发布评论

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

评论(1

极度宠爱 2024-10-09 02:27:28

使用:

UPDATE PRODUCTS
   SET description = specs

...会将表中每一行的 description 值设置为与 specs 列中的值相同的值。这就是你想要的每张唱片吗?

为什么要在description列中存储冗余数据?为什么不只使用 specs 列,并从表中删除 description 列?

Using:

UPDATE PRODUCTS
   SET description = specs

...will set the description value to the same value as in the specs 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 the specs column, and drop the description column from the table?

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