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.
balance_amountタイプの列を持つテーブルがあります:VARCHAR
balance_amount
VARCHAR
今、私はSUMしたいときに問題に直面しています。
例:
コンテンツ列がある場合:
125,000.00 170,000.00
それはちょうど表示されます:295
295
私が欲しいのは:295,000.00
295,000.00
ここにSQLFiddleがあります
SELECT FORMAT(SUM(CAST(REPLACE(REPLACE(col,',00',''),'.','') AS SIGNED)), 2) AS sumOfColumn FROM tab