Stored Procedures and User-Defined Functions in Snowflake
Sixteenth Chapter: Stored Procedures & User-Defined Functions for the SnowPro Core Certification
Sometimes, we may want to perform operations that Snowflake does not allow us to do with the built-in, system-defined functions. This will not be a problem as we can use Stored Procedures and User-Defined Functions. Let’s see them and understand their differences in one of the shortest chapters of the course!
- Introduction
- Stored Procedures
- User-Defined Functions (UDFs)
- User-Defined Table Functions (UDTFs)
- Typical Exam Questions
Remember that all the chapters from the course can be found in the following link:
INTRODUCTION
Store Procedures & User-Defined Functions (UDFs) are like functions in any other programming language. You can use JavaScript, SQL, Java, Python, and Scala to extend Snowflake functionality. The…