Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible misunderstanding of purpose of ISNUMERIC() #4

Open
brianary opened this issue Sep 1, 2015 · 0 comments
Open

Possible misunderstanding of purpose of ISNUMERIC() #4

brianary opened this issue Sep 1, 2015 · 0 comments

Comments

@brianary
Copy link

brianary commented Sep 1, 2015

The purpose of ISNUMERIC() is to determine whether a character field/column will throw errors when cast to a numeric type, not whether a field/column is a valid SSN or CC#, e.g. It doesn't indiscriminately accept - or + or even E, but it does accept -2.1E-3 because cast('-2.1E-3' as float) works and +$.99 because cast('+$.99' as money) works.

This is particularly helpful for migration scripts when changing the datatype of a column from character to numeric, and couldn't be easily accomplished to accept a wide range of legal numeric literals without

numcolumn = case ISNUMERIC(charcolumn) when 1 then cast(charcolumn as float) end

Filtering non-digit chars is the job of not like '[^0-9]'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant