Postgresql – Why does left join make second table come up blank?
I'm trying to join two tables, but I keep getting weird results, so I decided to do a SELECT * FROM transactions as t LEFT JOIN customers as c on t.customer_id = c.id just to see all the columns. When…