Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Declare @N1 NUmeric(10,2)
Declare @N2 Numeric(10,1)
Set @N1 = 5.8
Set @N2 = 5.8
Select Cast(@N1 As Char(9)),
Cast(@N2 As Char(9)),
Cast(Cast(@N1 As Real) As VarChar(9))