Re: Using "object orientated" tables? - Mailing list pgsql-novice

From David G. Johnston
Subject Re: Using "object orientated" tables?
Date
Msg-id CAKFQuwZMze+X-pVSNTWkY+vV3pFrX1S-kC0WCr4FGupzignhjA@mail.gmail.com
Whole thread Raw
In response to Using "object orientated" tables?  (Simon Connah <simon.n.connah@protonmail.com>)
Responses Re: Using "object orientated" tables?
List pgsql-novice
On Tue, May 10, 2022 at 6:33 PM Simon Connah <simon.n.connah@protonmail.com> wrote:
Hi,

I was wondering what the community thought of using table inheritance in PostgreSQL? Is it considered bad practice these days?

Basically, I have a users table and every user has a unique, not null UUID which is used as the primary key. There are only three columns on the table. User ID, Username, Email.

Having said that I'll have to store data about them which I don't want to do in one massive table as it would be ugly as hell. So what I want is my main user's table to stick to three columns and then sub-tables which inherit from it to add their own column? So for instance I might want to store an account balance for people making money on my site.

Hopefully, I've managed to explain what I mean properly. If you need any extra information then let me.


I wouldn't use inheritance, especially since I do not want to carry around copies of Username and Email.  Having a "core data" users table then adding additional one-to-one related tables based upon application needs is quite common.

David J.

pgsql-novice by date:

Previous
From: Simon Connah
Date:
Subject: Using "object orientated" tables?
Next
From: Tom Lane
Date:
Subject: Re: Using "object orientated" tables?