0
What if we need only 2 decimals by using 'sqrt' function?
For example, I want 3.16 for Square root of 10 instead 3.162277660
2 Respostas
+ 4
quite straightforward actually
lets say you want a rounded value of the square eoot of PRICE
SELECT ROUND(SQRT(PRICE), 2) FROM Products
0
in SQL