problem is solved. I used the below expression to avoid all the rows that has anything other than numbers in column1 in any position of the column value
WHERE Column1 NOT
LIKE'%[^0-9]%'
found it in bol
[^] | Any single character not within the specified range ([^a-f]) or set ([^abcdef]). |
Thanks All.