File tree Expand file tree Collapse file tree
docs2/pages/documentations/math Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Math_BigMul
2+
3+ ` Math_BigMul ` produces the full product of two 32-bit numbers.
4+
5+ ``` csharp
6+ Math_BigMul (
7+ @a INT ,
8+ @b INT )
9+ RETURNS BIGINT
10+ ```
11+
12+ ## Parameters
13+
14+ - ** a** : The first number to multiply.
15+ - ** b** : The second number to multiply.
16+
17+ ## Returns
18+
19+ The number containing the product of the specified numbers.
20+
21+ ## Example
22+
23+ ``` csharp
24+ SELECT SQLNET :: Math_BigMul (2147483647 , 2147483647 )
25+ ```
26+
Original file line number Diff line number Diff line change 1+ # Math
2+
3+ Provides methods for trigonometric, and other common mathematical functions.
4+
5+ | Name | Description | Example |
6+ | :--- | :---------- | :------ |
7+ | [ Math_BigMul(a, b)] ( /math-bigmul ) | Produces the full product of two 32-bit numbers. | [ Try it] ( ) |
8+
You can’t perform that action at this time.
0 commit comments