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.
Author |
Topic |
jijuanair
Starting Member
6 Posts |
Posted - 2008-11-04 : 06:46:33
|
HI,I have a column "size(int)".Some of the values in this coloumn are also alphabets and alphanumeric characters.I want to find the count of those coloumns(which have alphabets or alphanumeric characters).Basicaly why i want to do this is that i will be removing all the alphabets since i need only numericals in these coulumns.Any help is welcome,Jiju A NairJiju |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2008-11-04 : 08:12:15
|
If you want only numbers, useSELECT columns from tablewhere column not like '%[^0-9]%'MadhivananFailing to plan is Planning to fail |
 |
|
jijuanair
Starting Member
6 Posts |
Posted - 2008-11-04 : 08:18:02
|
Thanks :)Jiju |
 |
|
|
|
|