You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Performs division on two decimals. Result value will be of type [Decimal256](/sql-reference/data-types/decimal).
64
-
Result scale can be explicitly specified by `result_scale` argument (const Integer in range `[0, 76]`). If not specified, the result scale is the max scale of given arguments.
63
+
Performs division on two decimals. Result value will be of type [Decimal256](/sql-reference/data-types/decimal).
64
+
Result scale can be explicitly specified by `result_scale` argument (const Integer in range `[0, 76]`). If not specified, the result scale is the max scale of given arguments.
65
65
66
-
:::note
67
-
These function work significantly slower than usual `divide`.
68
-
In case you don't really need controlled precision and/or need fast computation, consider using [divide](#divide).
69
-
:::
66
+
:::note
67
+
These function work significantly slower than usual `divide`.
68
+
In case you don't really need controlled precision and/or need fast computation, consider using [divide](#divide).
FunctionDocumentation::ReturnedValue returned_value = "The result of division with given scale. Type: [Decimal256](/sql-reference/data-types/decimal.md).";
0 commit comments