Answers for "how to use round fuction in sql to show the results in two decimal places"

SQL
7

sql limit decimal places

SELECT CAST(ROUND(125.025000, 2) AS NUMERIC(36,2))
returns: 125.03
Posted by: Guest on April-10-2020

Code answers related to "how to use round fuction in sql to show the results in two decimal places"

Code answers related to "SQL"

Browse Popular Code Answers by Language