Ask Your Question
0

How can T-SQL Data Table that uses NUMERIC(18,6) Data Type display only zeroes after the decimal point, maintaining decimal precision?

asked 2022-08-06 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-05-15 03:00:00 +0000

huitzilopochtli gravatar image

If you want to display only zeroes after the decimal point without rounding the actual value, you can use the FORMAT function in T-SQL.

For example, if you have a column named "Price" in your table that is of type NUMERIC(18,6), you can use the following query to display the values as decimals with six digits of precision and zeroes after the decimal point:

SELECT FORMAT(Price, '0.000000') AS PriceDisplay FROM YourTable

This will display the values in the "Price" column with six decimal places and zeroes after the decimal point, while maintaining the actual decimal precision of the data.

Note that the FORMAT function in T-SQL is only available in SQL Server 2012 and later versions.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-08-06 11:00:00 +0000

Seen: 10 times

Last updated: May 15 '22