Round Function (Zero Elimination)

Jul 19, 2007

Hi

I use round function

select round(1234.4545,2)
GO

Result
1234.4500

I want last two zero to be eliminate.
Please advise how?

Thanks
Jawad

View 3 Replies


ADVERTISEMENT

Round Function

Jun 18, 2008

I have a money field, which I want to Round price in it to nearest .95 cent . The problem I have is, I don't know how to give 0.95 to Round function.

Thanks
Mazdak

View 1 Replies View Related

Strange ROUND Function!!!

Feb 16, 2007

Set @AVG = ROUND ((V1*5+V2*5)/10,0)


What is the difference between these codes?

Set @AVG = ROUND ((V1*5+V2*5)/10.0,0)


For values V1=80, V2=85;
First code gives 82! Second gives 83!:confused: :confused: :confused:

View 6 Replies View Related

ROUND Function In Ms-sql Server

Jun 13, 2006

Hi all

if i run
SELECT ROUND(700/1224) -- from sql server queyr analysier iam getting value as "0"

but same query i run in Oracle

SELECT ROUND(700/1224) FROM DUAL; iam getting value ".571895425"

what is reason can some body explan me

View 4 Replies View Related

Problem With Round Function In TSQL

Feb 13, 2008

Trying below instructions

create table t

(


indexvalue float

)
go

insert t

values (109.1)

insert t

values (109.3)

insert t

values (109.5)

insert t

values (109.9)

go
select *

from t


select sum (indexvalue) / count (*)

from t


select round (sum(indexvalue)/count (*), 1) -- this line is result of round (109.45) shows 109.4 that is incorrect
from t --why round function doesn't work correctly in this select


select round (109.45, 1) -- but this line results 109.5 that is correct


View 3 Replies View Related

Round Function In Derived Column Transformation

Oct 31, 2007

Can somebody please help me with the implementation of a logic in round off to the left of a decimal point.
Something like this in excel "=ROUND(x/12*31%,-2)" is to be implemented in SSIS. The Round function in the derived column is not permitting -2 for the length parameter. Please help

Value x Excel SSIS
627900 16200 16221
187000 4800 4831
277760 7200 7175
763000 19700 19711
1387500 35800 35844
1465200 37900 37851
2725000 70400 70396
292800 7600 7564
317200 8200 8194

The table lists the values for X in the formula and the respective result calculated by Excel. I would want SSIS to give the same results like excel is giving. Please help me to make it work.

View 3 Replies View Related

Round Function In Derived Column Transformation

Oct 31, 2007

Can somebody please help me with the implementation of a logic in round off to the left of a decimal point.
Something like this in excel "=ROUND(x/12*31%,-2)" is to be implemented in SSIS. The Round function in the derived column is not permitting -2 for the length parameter. Please help

Value x Excel SSIS
627900 16200 16221
187000 4800 4831
277760 7200 7175
763000 19700 19711
1387500 35800 35844
1465200 37900 37851
2725000 70400 70396
292800 7600 7564
317200 8200 8194

The table lists the values for X in the formula and the respective result calculated by Excel. I would want SSIS to give the same results like excel is giving. Please help me to make it work.

View 3 Replies View Related

Why These Two SQL Statement Return Differently? Using ROUND() Function In Transact-SQL

Sep 19, 2007

Hello, DECLARE @x DECIMAL
SET @x = 65.554
SELECT ROUND(@x, 1)--this returns 66

SELECT ROUND(65.554, 1)--this returns 65.600 can someone explain to me why is like that?
 Thank you
 

View 3 Replies View Related

Gaussian Elimination

Apr 18, 2007

Example usage:
To solve Ax=B

|25 5 1| |106.8 |
A = |64 8 1| , B = |177.21|
|144 12 1| |279.21|

exec dbo.gaussianElimination
N'<matrix>
<row values="25,5,1,106.8"/>
<row values="64,8,1,177.21"/>
<row values="144,12,1,279.21"/>
</matrix>', @verbose = 1

Will give this:
inputMatrix
--------------------------------------------------------------------------------
25,5,1,106.8
64,8,1,177.21
144,12,1,279.21

result
--------------------------------------------------------------------------------
x0 = 0.290000
x1 = 19.700000
x2 = 1.050000

testingScenario
--------------------------------------------------------------------------------
set nocount on
declare @x0 float
declare @x1 float
declare @x2 float
set @x0 = 0.290000
set @x1 = 19.700000
set @x2 = 1.050000
select (25 * @x0) + (5 * @x1) + (1 * @x2) --= 106.8
select (64 * @x0) + (8 * @x1) + (1 * @x2) --= 177.21
select (144 * @x0) + (12 * @x1) + (1 * @x2) --= 279.21

Resultant row echelon matrix after solving the augmented input matrix
========================================================================================================================
m n0 n1 n2 n3
------- ----------------------------------------------------- ----------------------------------------------------- ----------------------------------------------------- -----------------------------------------------------
m0 1.0 0.0 0.0 0.28999999999999826
m1 0.0 1.0 0.0 19.700000000000028
m2 0.0 0.0 1.0 1.0499999999998986

View 4 Replies View Related

Elimination And Updatinig Duplicate Records?

Jan 9, 2008

We have a procedure that yields a temp table that has duplicate records as follows:








calc_date
minmaxvalue

1/1/2004
1

1/1/2004
2

1/2/2004
1

1/3/2004
1

1/4/2004
2

1/5/2004
2

1/6/2004
2

1/7/2004
1

1/7/2004
2

1/8/2004
2

1/9/2004
1

1/10/2004
1

1/11/2004
2

1/12/2004
1

1/13/2004
1

1/14/2004
1

1/14/2004
2
We now want to go thru the resulting table and do the following:

if there is a duplicate date record, delete the duplicate and update the remaining minmaxvalue to be 3

the resulting ds would look like this








calc_date
minmaxvalue

1/1/2004
3

1/2/2004
1

1/3/2004
1

1/4/2004
2

1/5/2004
2

1/6/2004
2

1/7/2004
3

1/8/2004
2

1/9/2004
1

1/10/2004
1

1/11/2004
2

1/12/2004
1

1/13/2004
1

1/14/2004
3

Any ideas?

View 6 Replies View Related

Playoff Brackets (Single Elimination Tournament)

May 21, 2007

I am looking for Articles or Examples on implementing a Single Elimination Tournament architecture in SQL Server.
Bracketology, Playoff Bracket, Single Elimination Tournament, whatever you want to call it.

I need the solution to be able to support all sizes of brackets (from 8 - 64 teams and everything in between).


Any "starts in the right direction" would be much appreciated.

View 1 Replies View Related

SQL Server 2008 :: Partitioned Views Table Elimination Not Working

Jul 7, 2015

I have some Partitioned Views and on all queries using a table for the in clause, table elimination isn't happening.

Check Constraint is on the oid column

This works as expected, only goes to 2 tables;
SELECT *
FROM view_oap_all
WHERE oid IN ( '05231416529481', '06201479586431' )

This works as expected, only goes to 2 tables;
SELECT *
FROM view_oap_all
WHERE oid IN ( SELECT oid
FROM owners
WHERE oid IN ( '05231416529481', '06201479586431' ) )

This is checking all tables (headingnames are unique), ive tried this for the last 3 hours on many different tables containing the oid column.

Unless I write the oid as in the above queries it just doesn't work.
SELECT *
FROM view_oap_all
WHERE oid IN ( SELECT oid
FROM owners
WHERE headingname = 'TestSystem' )

View 6 Replies View Related

T-SQL ROUND(decimal, Int) Vs C# Round(Decimal, Int32)

Jan 30, 2006

Anybody noticed that SQL Server rounds up if the value is half waybetween two rounded values, but C#'s Decimal.Round(Decimal,Int32)rounds to nearest even number?[color=blue]>From MSDN: "When d is exactly halfway between two rounded values, the[/color]result is the rounded value that has an even digit in the far rightdecimal position. For example, when rounded to two decimals, the value2.345 becomes 2.34 and the value 2.355 becomes 2.36. This process isknown as rounding toward even, or rounding to nearest."I perform the same calculation sometimes on the web server in C# andsometimes at the database in T-SQL, but want to get the same resultfrom both calculations. Could anybody offer any strategies for dealingwith this?Thanks ~ Matt

View 3 Replies View Related

Round Up

Sep 14, 2006

X is a float and I need to perform x/10 and round the result up to the integer. So if result is 0.4 -> 1, if 1.1 -> 2. How can I do this with SQL? 

View 1 Replies View Related

Round Up And Round Down In Sql

Sep 9, 2007

 I want to do a simple thing but it seems to be behaving not as i am expectingI want to round number either up or down....e.g: 4.3 should round to 4  4.7 should round to 5when i use the round function like this:  83/17=4.88round( 83/17 , 0 ) it gives the answer as 4....when i was expecting it to be 5.... i know there is a ceiling function...but depending on the value of the division sometimes i want it to round up and sometimes round down. how can i do this? hope this makes sense. thanks  

View 3 Replies View Related

Round Bug

Mar 25, 1999

Has anyone been experiencing problems with rounding to 2 decimal places in SQL 7? I have a bunch of queries that generate web reports. Under 6.5 everything was fine. Now under 7.0 any number that needs to be rounded to 2 decimals is actually giving me several decimal places.

Here is a simplified version of what I am doing:
DECLARE @x real
DECLARE @y real
SELECT @x = 223.1
SELECT @y = 59.7

SELECT ROUND((@x/@y),2)

Result should be 3.74. But instead I am getting 3.7400000000000002

If anybody has heard if Microsoft has declared this as a known bug please let me know.

Thanks for your time.

View 1 Replies View Related

Round ?

Aug 22, 2002

I have the statement below which I use in an update

select (round(sum(tottime/60),2)) as ttime from vw_cms_suptime
where vw_cms_suptime.[tracking number] = 970
tracking.[tracking number]

Even though I have the round the statement returns a value
of 5.0000000000000003E-2

Is there something wrong with the round?

View 1 Replies View Related

Round The Value

Apr 17, 2008

Hi,

I need to display the value of a certain varible rounded to two digits after decimal.

For example :

value of a is 1346.8500

I need to get the value of a as 1346.85

Please help me

View 4 Replies View Related

Round To Near Value

Jan 4, 2007

hi,i have one criteria

if if i have time as 1:15 min means it has to show 1:15,if i have 1:20 min it has too be rounded and it has to show 1:30 min.
can any one give me query for this
thanks in anvance

View 3 Replies View Related

Round Off

May 14, 2007

How to round off the value .579 into .6 using round function.i tried doing it but in vain.

View 3 Replies View Related

Round Off

Jul 30, 2007

how do i round off value 0.23 to 0.2.
i am using this inside a scalar function and the return type is numeric(6,2).
so how do i get 0.2 and not 0.23

View 4 Replies View Related

How Do I Round The Value ?

Aug 10, 2007

Hi

I have datacloum called 'price' (float) and using the below code in my stored procedure

cast(price * 1.175 as decimal(19, 2)) as [item-price]

I am getting the price as (ex1: 23.58, ex2: 114.25, ....etc)

So How do I round the value(price) to (ex1: 23.99, ex2: 114.99)

Advance thanks

View 3 Replies View Related

Round Off

Aug 23, 2007

i want to round off 0.23 to 0.25 ,i am trying it with round function but can't get it.

View 3 Replies View Related

How ROUND?

Jul 20, 2005

Hi,i need to round:3° decimal between 1 and 5 LOW3° decimal between 6 and 9 UPThanks

View 1 Replies View Related

Round

Oct 10, 2007



There is a filed in a table of type decimal(12, 8)

when running a select query on this table for this field i.e.
select field1 from table1

the data is shown like:
102.12500000
104.12500000

And therefore the report shows the same figure.

How do I get this field to show up in the report as 4 decimal places. i.e.
102.1250
104.1250

Tried the properties of the cell to format the text into a number but there is only 2 decimal places there.
Even tried the expression by using Rnd(field1). This does not seem to do what I am after.


Thanks

View 1 Replies View Related

Round A Number

Jun 26, 2000

How do I write sql syntax to round the last digit. For example, 12.152 should be 12.15. My current sql syntax does not round the last digit as follows:

Select tblARInvoiceDetail.UnitPrice * tblARInvoiceDetail.Quantity AS ChargeBeforeDiscount
FROM tblARInvoices INNER JOIN
tblARInvoiceDetail ON
tblARInvoices.ARInvoiceID = tblARInvoiceDetail.ARInvoiceID


The tblARInvoiceDetail.UnitPrice column is numeric;length 9;precision 18
The Quantity column is integer;length 4; precision 10;scale 0

Any Suggestions?
Thanks,
Denise

View 1 Replies View Related

Round Problem

May 5, 2004

Hi,

I am using sql statement to save data in SQL SERVER but even i did not apply any round function it is automatically rounding up. e.g. 3.56 when i see it in database it is 4 how can i avoid this rounding? I am using MS Access as front end.

Any help will be highly appreciated.

View 11 Replies View Related

How To Find Max Round

Feb 12, 2014

I've a table having the following fields :

state|dist|company|round
1 | 1 | 2 | 2
1 | 1 | 3 | 3
2 | 1 | 3 | 2
2 | 1 | 1 | 4
2 | 2 | 12 | 1
2 | 2 | 9 | 2
2 | 2 | 4 | 3

I want to extract the max round in the state,district with the adjacent company.

View 3 Replies View Related

Round Off Sum Values

Mar 19, 2014

I have already summed the values and this below query sum the values and returns zero if there are no values. How can I roundoff the values for these columns.

isnull(sum([Old_Values]),0) [Old Values],
[New_Value] = isnull(sum([Yearly_Value]-[Previous_Year_Value]),0)

Even this query I use for calculation and I need to round off the values

[Product_Price] = [Product_Profit]/4,
[Product_Profit] = [ActualValue] * 0.75,
[GrossValue]

View 1 Replies View Related

Problems With Round()

Feb 19, 2008

I understand that when you use ROUND(8.5,1), I would get 9 but no matter how hard I try, I get 8.

I had this code that suppose to get the round of a quotient. I wanted to update a number of records by converting them via multiplication and/or division.

Here:

UPDATE Length
SET inchTOcm = inchTOcm*2.5, metricTOton = ROUND(metricTOton/1.1,1);

supposing the original value of inchTOcm are in inch and in metricTOton are in metric ton.

There is a value in the metricTOton that when I divide it with 1.1, it's 345.81818. However, when I round it, it displays 345 instead of 346.

Is there wrong? How can I do this without using the CASE statement?

View 3 Replies View Related

Get Round Of Getdate()

Mar 1, 2008

Hi,
i write a query

select getdate()

suppose output come '2008-03-01 14:08:52.187'

i want to get like this output

'2008-03-01 14:09:00'

means want to neglate second and milisecond part and want round of getdate()



Ranjeet Kumar Singh

View 1 Replies View Related

Round() Problem

May 20, 2008

Hi,

When I use the following query
select round(7.35,1)
the output is 7.4.

But when I use this query

declare @tot float

set @tot = 7.35

select round(@tot,1)

the output is 7.3

How do I make the output consistent here desirable is 7.4. Please advise.

View 4 Replies View Related

Can't Seem To Round An Average.

Feb 8, 2007

I am using an expression to create an average. The result is an odd number like 33.666666666666667.

I want to round this to 34 (I would even accept 33, or 33.67), just not so manny digits to the right.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved