Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 pulling non numeric fields

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2005-04-11 : 08:09:34
Azeem khan writes "I have table with zip code column and it has lot of state CD entered in by mistake , I wanna pull all the non numeirc data from zip code column what function condition i will use
in where clause
like
"where ZIP code ??????""

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2005-04-11 : 08:39:55

Select column from Table where isnumeric(column)=False

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

spirit1
Cybernetic Yak Master

11752 Posts

Posted - 2005-04-11 : 08:53:31
note that first and second will return true for isnumeric():
select isnumeric('123d123'), isnumeric('123e123'), isnumeric('123da123')

Go with the flow & have fun! Else fight the flow
Go to Top of Page
   

- Advertisement -