Converting Integers to Currency Format in MySQL Queries
In MySQL, you can transform integer values into currency format while performing selections. While you can append the currency symbol using the CONCAT() function, inserting the comma separators for large numbers requires a more elaborate approach.
Using the FORMAT() Function
The FORMAT() function provides a comprehensive solution for formatting numbers, including conversion to currency format.
Syntax:
FORMAT(val, decimals)
Where:
Example:
To convert the integer 1000 into the currency format "$1,000":
SELECT CONCAT('$', FORMAT(1000, 2)) AS formatted_value;
This query returns the value "$1,000". The FORMAT() function adds the commas as necessary, ensuring a professional currency display.
위 내용은 MySQL 쿼리에서 정수를 통화 형식으로 지정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!