Skip to content

Commit 1f01c41

Browse files
committed
Added Math_BigMul article
1 parent 513832c commit 1f01c41

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+

0 commit comments

Comments
 (0)