在 SQL 中,可使用以下方法用于貨幣轉(zhuǎn)換:
SELECT amount * exchange_rate AS converted_amount
FROM transactions
WHERE currency = 'USD';
SELECT
CASE
WHEN currency = 'USD' THEN amount * usd_to_eur_rate
WHEN currency = 'EUR' THEN amount
ELSE amount
END AS converted_amount
FROM transactions;
以上是兩種常見的方法用于貨幣轉(zhuǎn)換,具體的實現(xiàn)方法可能因數(shù)據(jù)庫類型和表結(jié)構(gòu)而有所不同。在實際應(yīng)用中,應(yīng)根據(jù)具體情況選擇最適合的方法。