Skip to content

Tag: postgresql

Postgresql – create table with disjoint subclasses

I’m unsure how one can create a table on postgresql with disjoint subclasses. I have represented (a very simplified version of) my problem below in an ER diagram, showing the two subclasses and the attributes of each subclass. For the columns common to all rows (id, common1, common2), it’s clearly…

How to use triple INNER JOIN with one empty table?

Given is the following table: A project can be either owned by a user (user_id), OR by an organization (org_id) So either field is 0. So I do an INNER JOIN on projects, users, and organizations, but if the project is owned by a user (and currently no organization does exist at all), the result is empty. Does …

How do I do this without a subquery?

I need to make the same query, but without a subquery! I need to get the count of rows in which genre_id is equal to the :deletedGenreId and the org_type_id value of this line in this table is not unique Answer There is nothing wrong with sub-query. Sub-query actually can help boost performance and increase c…