Re: Inheritance in PostgreSQL

2023-10-18 Thread Luis Bruno
> Thank you all for your responses. I appreciate the input on the use of > table inheritance in PostgreSQL, and I will take your recommendations into > consideration. The provided link is also quite useful, and I'm grateful for > the solution provided by Ron regarding normalization. Thanks! >

Inheritance in PostgreSQL

2023-10-17 Thread Luis Bruno
Hello, I'm in the process of developing a basic database structure that utilizes inheritance as part of a test for my work. The database consists of two tables: ‘PERSON' and ‘CUSTOMER' with the ‘PERSON' table serving as the parent table for ‘CUSTOMER' . Initially, I defined the 'CREATE TABLE' stat