我的MySQL表total
和dollars
中有两列。我需要将我的美元兑换成卢比并将其存储在我的total
字段中。我可以乘以实际美元汇率并存储结果吗?
我需要一个数学函数的SQL查询,如下所示:
total = dollars * current_dollar_rate_in_rupees
我可以动态转换吗?如果是这样,我的SQL查询将如何以及将会是什么?
答案 0 :(得分:2)
您可以使用此查询将转化结果存储到total
字段中:
UPDATE `tablename` SET `total` = `dollars` * <current_dollar_rate_in_rupees>;
答案 1 :(得分:0)
Multiplying Two Columns in SQL Server
因此,只需将此查询在数据库中提供的值存储为“total”
SELECT dollars * current_dollar_rate_in_rupees from tablename