up vote 0 down vote favorite

I have a number of type Decimal(8, 2) and have been using Substring to get fractional value.

E.g.)
	declare @val decimal(8, 2), @strVal varchar(10)
	set	@val = 15.80
	set @strVal = cast(@val as varchar)
	select	@val, substring(@strVal, charindex('.', @strVal), len(@strVal))

Is there a better way to simply get fractional value, .80 from @val without having to convert it to a character?
I am wondering if there is a built-in UDF (User-Defined Function) that would parse instead of having to rolling out my own version.

flag

Your question makes no sense. you have a decimal and you're trying to convert it to a decimal???? – JonH Dec 7 '09 at 15:10
What ??! You already have the decimal value, in @val. What the substring is doing is retreiving the fractional value as a character value. – Charles Bretana Dec 7 '09 at 15:11
Yes, fractional value of type int is what I am trying to get out of it. So from 15.80, I would like to get .80 – Sung Meister Dec 7 '09 at 15:12

4 Answers

up vote 4 down vote accepted

Use the modulus (%) operator. You'll get 0.80.

Like this:

declare @val decimal(8, 2)
set     @val = 15.80
select  @val, @val % 1
link|flag
Elegant solution. I just tried this and it worked. – Greg Dec 7 '09 at 15:22
Ha, expected nothing less from a guy with a handle, md5sum. Thanks. – Sung Meister Dec 7 '09 at 15:31
It works for negative numbers just fine! – Sung Meister Dec 7 '09 at 15:32
Not sure why people continuously overlook the modulus operator... I've seen some REALLY bizarre ways of stripping whole numbers off of decimal values. – md5sum Dec 7 '09 at 15:47
Prolly cause you keep spamming SO with this same thread ? – JonH Dec 7 '09 at 20:51
up vote 1 down vote

I think you mean the fractional value, not the decimal value. You already have teh decimal value. To get the fractional value, use Round, or Floor functions

  Declare @Fraction Decimal(8,2)
  Set @Fraction = @Val - Floor(@Val)

or

  Set @Fraction = @Val - Round(@Val, 0)
link|flag
I haven't explored mathematical functions, yet and this looks like a simply but yet reliable way to get a fractional number. Thanks Charles. – Sung Meister Dec 7 '09 at 15:15
No problem, check out the Round, and the floor reference links, to see how they work and the diofferences between them... – Charles Bretana Dec 7 '09 at 15:18
up vote 1 down vote
SET @val = (@val - ROUND(@val, 0, 1) * 100)

The ROUND(@val, 0, 1) should truncate the 15.80 into a 15.00. Then you subtract the 15 from the 15.80, and multiply the 0.80 by 100 to get 80 in numeric form.

The ROUND function requires the third parameter set to 1 to truncate the number. Otherwise, it would convert 15.80 into 16.00. See: http://msdn.microsoft.com/en-us/library/ms175003.aspx.

link|flag
up vote -1 down vote
declare @val decimal(8, 2), @strVal varchar(10)  
declare @theint int

set @val = 15.80
SELECT @theint = @val

PRINT @val     --prints 15.80
PRINT @theint  --prints 15

print @val-@theint  --prints .80

print @val % @theint  --prints .80
link|flag
Why the extra SELECT s? i.e.: set @val = (SELECT 15.80) and SELECT @theint = (SELECT @val) could be rewritten: SET @val = 15.80 and SET @theint = @val . While the method works, it's actually more work. The select costs more in execution. – md5sum Dec 7 '09 at 16:57
Could be either way. The execution is not different at all. – JonH Dec 7 '09 at 17:34
The execution difference is pretty vast... check your execution plan. Although the relative TIME difference is very small, if you do this a lot, you'll see some performance loss. SET @val = (SELECT 15.80) raises query cost from 17% to 52% over SET @val = 15.80 because of the "Compute Scalar" and "Constant Scan" operations. SELECT @theint = (SELECT @val) raises query cost to 48% from 17% over SET @theint = @val because of the "Constant Scan" operation. All other parts of the query get dropped to < 1% of the effective cost of the query with the added work. All would be 17% otherwise. – md5sum Dec 7 '09 at 18:14
Absolutely not, they both produce the same plans. Stop pulling BS outta yer hat. Both are acceptable and the only difference is more typing. Also set is used to set once, while select is used for multiple. Please stop bsing. – JonH Dec 7 '09 at 19:21
They do NOT produce the same execution plan in MSSQL 2008 as tagged by the author of the question. However, I cannot vouch for previous versions. I'd be more than happy to produce screenshots of the execution plans for you. – md5sum Dec 7 '09 at 19:54
show 3 more comments

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.