- Learning PostgreSQL 11
- Salahaldin Juba Andrey Volkov
- 258字
- 2021-07-02 13:11:52
PostgreSQL Advanced Building Blocks
This chapter will introduce the remainder of the PostgreSQL building blocks, including views, indexes, functions, triggers, and rules. In addition to that, the web car portal schema will be revised. Several Data Definition Language (DDL) commands, such as CREATE and ALTER, will also be introduced. Since the lexical structure and several Data Manipulation Language (DML) commands haven't been introduced yet, we will try to use simple DML commands.
In this chapter, the following topics will be covered:
- Views: Views are an important part of database modeling because they act as an interface or as an abstraction layer. The Views section will cover view synopsis and usages, and an updatable view example will be demonstrated.
- Indexes: Indexes are the secret sauce for ensuring consistency and performance. Index types will be discussed.
- Functions: Functions can be used to perform very complex logic in the database. Also, they can be used to return scalar values or datasets. Functions will be discussed briefly here, since functions are discussed in detail in Chapter 07, Server-Side Programming with PL/pgSQL.
- User-defined data types: One big advantage of PostgreSQL is being able to define and use new, different data types; this section will show several use cases, wherein user-defined data types will be used to solve some issues.
- Triggers and rule systems: Triggers and rule systems allow developers to handle events triggered by INSERT, UPDATE, DELETE, and so on. The trigger system is used to model complex business requirements that are difficult to achieve using plain SQL.
推薦閱讀
- Spring Boot開發與測試實戰
- 認識編程:以Python語言講透編程的本質
- Python自動化運維快速入門
- 機器人Python青少年編程開發實例
- Apache Spark 2.x for Java Developers
- Node.js Design Patterns
- IoT Projects with Bluetooth Low Energy
- 深入淺出 HTTPS:從原理到實戰
- 編程的原則:改善代碼質量的101個方法
- MongoDB Administrator’s Guide
- Elasticsearch搜索引擎構建入門與實戰
- Java程序設計教程
- 高質量程序設計指南:C++/C語言
- Python趣味創意編程
- TypeScript High Performance