Instruction
Suppose we no longer need a specific function to be present in our database, so we'd like to remove that function.
For this purpose, we can use the DROP command:
DROP FUNCTION circle_area(decimal);
Exercise
Now, go ahead and DROP the get_truncated_pi() function.



