Answers for "postgresql round to nearest 10"

SQL
0

postgresql function ROUND

SELECT
    ROUND( 10.4 );
--10
SELECT
    ROUND( 10.5 );
--11
Posted by: Guest on October-19-2021

Code answers related to "postgresql round to nearest 10"

Code answers related to "SQL"

Browse Popular Code Answers by Language