Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Getting Decimal/Fractional Part
Message
 
 
To
13/12/2004 00:48:33
General information
Forum:
Microsoft SQL Server
Category:
Other
Miscellaneous
Thread ID:
00968658
Message ID:
00968694
Views:
8
This message has been marked as the solution to the initial question of the thread.
@NumDecimalPar = @Num1 - CAST(@Num1 AS int)
> I usually use Modulo operator (% in SQL) to get the decimal or fraction part of the numeric value
> eg:
> @Num1=8989.678
> @Num2=1
> @NumDecimalPar = @Num1 % @Num2
>
>my problem is the Modulo in MSSQL works only for Interger data type. Is there way or function w/c I use on getting the decimal/or the fraction part of numeric data type?
>
>my current solution is to covert it to Varchar and use Substring to chop it. then cast it back to numeric data type
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform