SELECT round(0.96855, 3, 1)
-> 0,96800
For 0,968 :cast(round(0.96855, 3, 1) as decimal(10,3))
fungerer fint.
Ref:Runde (hvis sidste param til runde er noget andet end nul, afkortes den)
SELECT round(0.96855, 3, 1)
-> 0,96800
For 0,968 :cast(round(0.96855, 3, 1) as decimal(10,3))
fungerer fint.
Ref:Runde (hvis sidste param til runde er noget andet end nul, afkortes den)