Write suitable SQL query for the following:
Round the value of pi (3.14159) to two decimal places.
SELECT ROUND(3.14159, 2);