Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Function management
6. DROP FUNCTION

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.