Created
November 1, 2016 21:15
-
-
Save tengpeng/55817cb29be834acfd2323dfcbe0ab95 to your computer and use it in GitHub Desktop.
convert char to float
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cast([FINAL Freight Cost] as float) | |
cast(ISNULL([FINAL Freight Cost],0) as float) | |
NULLIF(CAST(ISNULL([FINAL Freight Cost],0) as float), 0) | |
convert(float,replace([FINAL Freight Cost],',','') )[FINAL Freight Cost] | |
CAST([FINAL Freight Cost] AS FLOAT) AS CastedValue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment