0
votes
3answers
90 views

Add multiple columns in FULL JOIN, assume empty row as zero

I run PostgreSQL and I have multiple (10+) tables with identical column names and formats and I would like to sum two of their columns. If a row is missing in one of the tables, I need it to be ...
0
votes
1answer
44 views

How Do I Use Joins for Three Tables in Ruby on Rails?

I am working on a Ruby on Rails application which already has logic for text searching using pg_search and two other fields on a model. The logic creates an 'array' of rows from the search result. I ...
1
vote
1answer
144 views

Postsgresql Outer Join not working as intended

A seemingly simple query that I can't make work... Two tables room and availability Room [id, title, beds] Availability [room_id, date, bed_delta] A Room has a fixed, maximum number of ...
0
votes
2answers
210 views

Outer Join Based On Concatenated SELECT

SO perhaps the data framework is flawed from the start, but.. I need to do an out join on two tables, but I need to do it based a concatenation of 2 column sin the second table. For instance, table ...
0
votes
1answer
50 views

Finding a record in one of 2 tables

In PostgreSQL 8.4.8 database I have 2 tables: noreset and track. They have exactly same column names and contain records identified by unique id. A record can be present only in one of the tables, ...
2
votes
1answer
163 views

Want to exclude from the query some records, but I do not know how

I have three tables like this: messages user_id | message 2 | 'foo' 3 | 'bar' blacklists user_id | blacklister_id 1 | 2 users id | name 1 | 'me' 2 | 'blacklister' ...
1
vote
1answer
491 views

Does PostgreSQL have a limit on # of tables in a join?

Today when playing around with dynamic query generation I discovered that mysql has a hard maximum limit of how many tables can be used in a join: 61. This lead me to wonder about PostgreSQL, does ...
2
votes
3answers
7k views

PostgreSQL: left outer join syntax

I'm using PostgreSQL 8.4.6 with CentOS 5.5 and have a table of users: # select * from pref_users where id='DE2'; id | first_name | last_name | female | avatar | city | lat ...
1
vote
3answers
5k views

How to outer-join two tables (main and many-to-one sub-table) to get only ONE item from second table?

I have two tables that are something like this: Main table: id (int), title (varchar), etc. Sub-table: main_table_id (foreign key into main table), tag (varchar), etc. There can be zero or more ...