MySQL 使用 select 更新表中的多列和记录

发布于 2024-10-12 15:25:14 字数 399 浏览 4 评论 0原文

我刚刚向我正在处理的表中添加了两列,并希望根据另一列的值将数值放入这两列中。我需要对数据库(MySQL)中的所有记录执行此操作,有人可以帮我吗?

表(t1)看起来像

spectra (varchar, primary key),
value REAL,(This is the one to use)
new_val 1 REAL
new_val 2 REAL

我认为它应该看起来像这样;

update t1 set (new_val1,new_val2)=(select value*1.5,value*2 from t1) as t2 where t1.spectra=t2.spectra;

请问有什么建议吗? 谢谢, 詹姆斯

I've just added two columns to a table I was working on, and want to put numerical values in those two columns based on the value of another column. I need to do this for all of the records in the database (MySQL), can someone help me with this please?

The table (t1) looks like

spectra (varchar, primary key),
value REAL,(This is the one to use)
new_val 1 REAL
new_val 2 REAL

I'm thinking it should look something like;

update t1 set (new_val1,new_val2)=(select value*1.5,value*2 from t1) as t2 where t1.spectra=t2.spectra;

Any suggestions please?
Thanks,
James

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

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

发布评论

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

评论(1

﹏雨一样淡蓝的深情 2024-10-19 15:25:14

您所需要的只是:

update t1 set new_val1 = value*1.5, new_val2 = value*2;

All you need is:

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