Skip to content

Instantly share code, notes, and snippets.

@tengpeng
Created November 1, 2016 21:15
Show Gist options
  • Save tengpeng/55817cb29be834acfd2323dfcbe0ab95 to your computer and use it in GitHub Desktop.
Save tengpeng/55817cb29be834acfd2323dfcbe0ab95 to your computer and use it in GitHub Desktop.
convert char to float
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