Skip to content

Commit 281e6da

Browse files
authored
Merge pull request #697 from dangowans/patch-2
Rearrange acceptable data types for accessibility
2 parents e53f44f + f55d2bf commit 281e6da

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

docs/t-sql/functions/isnumeric-transact-sql.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: "ISNUMERIC (Transact-SQL) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "03/13/2017"
@@ -50,15 +50,15 @@ ISNUMERIC ( expression )
5050
**int**
5151

5252
## Remarks
53-
ISNUMERIC returns 1 when the input expression evaluates to a valid numeric data type; otherwise it returns 0. Valid numeric data types include the following:
54-
55-
|||
56-
|-|-|
57-
|**int**|**numeric**|
58-
|**bigint**|**money**|
59-
|**smallint**|**smallmoney**|
60-
|**tinyint**|**float**|
61-
|**decimal**|**real**|
53+
ISNUMERIC returns 1 when the input expression evaluates to a valid numeric data type; otherwise it returns 0. Valid [numeric data types](../../t-sql/data-types/numeric-types.md) include the following:
54+
55+
|||
56+
|-|-|
57+
| [Exact Numerics](../../t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql.md) | **bigint**, **int**, **smallint**, **tinyint**, **bit** |
58+
| [Fixed Precision](../../t-sql/data-types/decimal-and-numeric-transact-sql.md) | **decimal**, **numeric** |
59+
| [Approximate](../../t-sql/data-types/float-and-real-transact-sql.md) | **float**, **real** |
60+
| [Monetary Values](../../t-sql/data-types/money-and-smallmoney-transact-sql.md) | **money**, **smallmoney** |
61+
6262

6363
> [!NOTE]
6464
> ISNUMERIC returns 1 for some characters that are not numbers, such as plus (+), minus (-), and valid currency symbols such as the dollar sign ($). For a complete list of currency symbols, see [money and smallmoney (Transact-SQL)](../../t-sql/data-types/money-and-smallmoney-transact-sql.md).

0 commit comments

Comments
 (0)