Get number with decimal value

MAK

I am trying to get the number with the decimal values.

Here is the following example:

I have two numbers: 621 which should be divided by 7 and result should be shown in the form of number with at least 3 digits decimal values. Accordingly the result should be 88.714.

My Try1:

SELECT CAST(621/7 as DECIMAL(5,3));

Getting result is 88.000.

Try 2:

SELECT CONVERT(DECIMAL(5,3), 621/7);

Getting result is 88.000.

APH

You have to convert before you divide in order to avoid integer division. Easiest way is:

cast(621*1.0/7 as Decimal(5,3))

In your examples, the division is happening first, then the convert/cast is being applied to that result.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get value from input element as a number in decimal

From Dev

How to get only the Whole Number of a Price Value in Decimal from a DataGridView?

From Dev

Input type number, decimal value

From Dev

copy decimal number value to a compponent

From Dev

How to get number of decimal places

From Dev

Get Number of Decimal Places with Javascript

From Dev

how do you get a negative decimal value from 8 bit signed binary number?

From Dev

Regex to get decimal value in string

From Dev

Get the value before decimal point

From Dev

Get decimal places for a double value

From Dev

GMP: how to write a number as a decimal value?

From Dev

Convert json decimal number to short with hexadecimal value

From Dev

Convert posted value to decimal with number_format

From Dev

Convert decimal to whole number - but ignoring value

From Dev

Get number of significant digits to the right of decimal point in c# Decimal

From Dev

Get next smallest nearest number to a decimal

From Dev

Get number of digits before decimal point

From Dev

Java - Split String to get decimal number

From Dev

Get number of digits before decimal point

From Dev

Excel formula to get time difference as a decimal number

From Dev

Get value from number

From Dev

Get value of number and reverse it

From Dev

How to get number of digits in both right, left sides of a decimal number

From Dev

Oracle SQL, separating a Number string to get whole number and decimal separately

From Dev

how to get specific last decimal float value

From Dev

How to get the decimal value for a rune in Go?

From Dev

Get minimum and maximum decimal scale value

From Dev

How to get decimal value from Slider?

From Dev

Get decimal value from a DWORD in the registry

Related Related

  1. 1

    How to get value from input element as a number in decimal

  2. 2

    How to get only the Whole Number of a Price Value in Decimal from a DataGridView?

  3. 3

    Input type number, decimal value

  4. 4

    copy decimal number value to a compponent

  5. 5

    How to get number of decimal places

  6. 6

    Get Number of Decimal Places with Javascript

  7. 7

    how do you get a negative decimal value from 8 bit signed binary number?

  8. 8

    Regex to get decimal value in string

  9. 9

    Get the value before decimal point

  10. 10

    Get decimal places for a double value

  11. 11

    GMP: how to write a number as a decimal value?

  12. 12

    Convert json decimal number to short with hexadecimal value

  13. 13

    Convert posted value to decimal with number_format

  14. 14

    Convert decimal to whole number - but ignoring value

  15. 15

    Get number of significant digits to the right of decimal point in c# Decimal

  16. 16

    Get next smallest nearest number to a decimal

  17. 17

    Get number of digits before decimal point

  18. 18

    Java - Split String to get decimal number

  19. 19

    Get number of digits before decimal point

  20. 20

    Excel formula to get time difference as a decimal number

  21. 21

    Get value from number

  22. 22

    Get value of number and reverse it

  23. 23

    How to get number of digits in both right, left sides of a decimal number

  24. 24

    Oracle SQL, separating a Number string to get whole number and decimal separately

  25. 25

    how to get specific last decimal float value

  26. 26

    How to get the decimal value for a rune in Go?

  27. 27

    Get minimum and maximum decimal scale value

  28. 28

    How to get decimal value from Slider?

  29. 29

    Get decimal value from a DWORD in the registry

HotTag

Archive