Table1
Id value
001 2.3
002 1.3
003 3
004 5.3
...
...
value column datatype is float
Note:
value column will be .3 always, it will not come like .1, .2, .4, .5 to .9
Now i want to display .5 instead of .3 for all the values…
Expected Output
Id value
001 2.5
002 1.5
003 3
004 5.5
...
...
How to make a query for this.
Need SQL Query Help
Use Round function to get your result
If the value is greater than .3 then it will be rounded to .5 and if it is less than .3 then the integer value will be retrieved