Postgresql – What is wrong with this JOIN syntax?
If I run this SQL code in my PostgreSQL database, it works fine: select e.type_id, s.copy_destination || '' FROM ebooks.ebooks e, ebooks.static_text s WHERE e.status_id = 1 But when I add the join, everything goes pear-shaped. So if I run:…