Click to Rate and Give Feedback
MSDN
MSDN Library
SQL Server
SQL Server 2005
 ISNUMERIC (Transact-SQL)
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2005 Books Online (November 2008)
ISNUMERIC (Transact-SQL)

Updated: 12 December 2006

Determines whether an expression is a valid numeric type.

Topic link icon Transact-SQL Syntax Conventions

ISNUMERIC ( expression )
expression

Is the expression to be evaluated.

int

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:

int

numeric

bigint

money

smallint

smallmoney

tinyint

float

decimal

real

A return value of 1 indicates that expression can be converted to at least one of the numeric types.

ms186272.note(en-US,SQL.90).gifNote:
   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 Using Monetary Data.

The following example uses ISNUMERIC to return all the postal codes that are not numeric values.

USE AdventureWorks;
GO
SELECT City, PostalCode
FROM Person.Address 
WHERE ISNUMERIC(PostalCode)<> 1;
GO

Release History

12 December 2006

New content:
  • Added the format descriptions for the input expression.

14 April 2006

New content:
  • Added note about additional characters.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker