roundDecimal
Signature
Usage Examples
SELECT roundDecimal(3.14159, 2); -- Output: 3.14
SELECT roundDecimal(12.34567, 3); -- Output: 12.346
SELECT roundDecimal(9.8765, 0); -- Output: 10Important Considerations:
Was this helpful?

