- PostgreSQL Server Programming(Second Edition)
- Usama Dar Hannu Krosing Jim Mlodgenski Kirk Roybal
- 248字
- 2021-07-23 20:36:49
Chapter 3. Your First PL/pgSQL Function
A function is the basic building block for extending PostgreSQL. A function accepts input in the form of parameters, and it can create output in the form of output parameters or return values. Many functions are provided by PostgreSQL itself, that is, common mathematical functions such as square roots and absolute values. For a comprehensive list of the functions that are already available, go to http://www.postgresql.org/docs/current/static/functions.html.
The functions that you create have the same privileges and ability that the built-in functions possess. The developers of PostgreSQL use the same libraries to extend the database that you use, as a developer, to write your business logic.
This means, that you have the tools available to be a first-class citizen of the PostgreSQL development community. In fact, there are no second-class seats on this bus.
A function accepts parameters that can be of any data type available in PostgreSQL, and it returns results to the caller using the same type. What you do within the function is entirely up to you. You have been empowered to do anything that PostgreSQL is capable of doing. You are herewith also warned that you are capable of doing anything that PostgreSQL is capable of doing. The training wheels are off.
In this chapter, you will learn the following topics:
- The basic building blocks of a PostgreSQL function
- Passing parameters into a function
- The basic control structures inside a function
- Returning results out of a function
- 算法訓(xùn)練營:入門篇(全彩版)
- JavaScript+jQuery開發(fā)實(shí)戰(zhàn)
- Magento 2 Development Cookbook
- 實(shí)戰(zhàn)低代碼
- INSTANT Mercurial SCM Essentials How-to
- 網(wǎng)店設(shè)計(jì)看這本就夠了
- PhoneGap Mobile Application Development Cookbook
- SQL Server 2016數(shù)據(jù)庫應(yīng)用與開發(fā)
- Getting Started with LLVM Core Libraries
- BeagleBone Black Cookbook
- Python深度學(xué)習(xí):模型、方法與實(shí)現(xiàn)
- LabVIEW虛擬儀器入門與測(cè)控應(yīng)用100例
- Scratch·愛編程的藝術(shù)家
- Unity 2018 Augmented Reality Projects
- Python編程快速上手2