Data Management Systems
The first part of this book introduces how to describe and analyze real-world objects using data, starting with an understanding of relational databases and SQL. It guides you through setting up a PostgreSQL database to store and query data effectively. You will learn how to create, insert, and delete tables and perform CRUD operations using SQL. This part also covers how to import and export data between PostgreSQL and external filesystems. Finally, it introduces Python for database interaction and data manipulation, enabling you to manage relational data programmatically.
This part of the book includes the following chapters:
- Chapter 1, Introduction to Data Management Systems
- Chapter 2, Creating Tables with Solid Structures
- Chapter 3, Exchanging Data Using COPY
- Chapter 4, Manipulating Data with Python