ISNUMERIC function
You might want to match on like instead of not like. Less work for the optimizer.AdamCtrl+Z
View ArticleISNUMERIC function
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 valueWHERE Column1 NOT LIKE'%[^0-9]%' found it in...
View ArticleISNUMERIC function
Yes, there is an enhanced IsNumericEX function here Premature optimization is the root of all evil in programming. (c) by Donald Knuth Naomi Nosonovsky, Sr. Programmer-Analyst My blog
View ArticleISNUMERIC function
There are other, more specific ways. They depend on what you need: integer or numeric? What is the range of values?You can read some solutions here:...
View ArticleISNUMERIC function
I have a situation where I need to check if a row has all numbers in it before inserting into another table.Am using isnumeric() but the rows am inserting has some special characters and the isnumeric...
View Article