182764125216
0
Q:

postgres join

SELECT *
    FROM weather INNER JOIN cities ON (weather.city = cities.name);
2
-- This is in postgreSQL

-- We have tableA and tableB, x is primary key in tableA and also
-- a foreign key in tableB as y
SELECT * FROM tableA JOIN tableB ON tableA.x = tableB.y;

-- This will select all the columns from both tables that share a key
0

New to Communities?

Join the community