Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 MySQL 表中有两列total,dollars. 我需要将我的美元兑换成卢比并将其存储在我的total领域中。我可以将实时美元汇率相乘并存储结果吗?
total
dollars
我需要一个数学函数的 SQL 查询,如下所示:
total = dollars * current_dollar_rate_in_rupees
我可以使这种转换动态吗?如果是这样,我的 SQL 查询将如何以及将是什么?
total您可以使用此查询将转换结果存储到字段中:
UPDATE `tablename` SET `total` = `dollars` * <current_dollar_rate_in_rupees>;
SQL Server 中的两列相乘
因此,只需将此查询给出的值存储在您的数据库中作为“总计”
SELECT dollars * current_dollar_rate_in_rupees from tablename