/// SQL Query to Round the values in different format
DECLARE @value decimal(18,5)
SET @value = 6.001
SELECT ROUND(@value, 1)
SELECT CEILING(@value)
SELECT FLOOR(@value)
/// C# code to Round the values in different format
decimal Value = Convert.ToDecimal(Console.ReadLine());
System.Console.WriteLine("RoundValue={0}\nCeilingValue={1}\nFloorValue={2}", Math.Round(Value),Math.Ceiling(Value),Math.Floor(Value));
/// JavaScript code to Round the values in different format
var ceilValue = Math.ceil(Value);
var floorValue = Math.floor(Value);
var roundValue = Math.round(Value);