Hola, descubrimos la respuesta a lo que necesitas, has scroll y la obtendrás más abajo.
Ejemplo 1: unión psql
SELECT*FROM weather INNERJOIN cities ON(weather.city = cities.name);
Ejemplo 2: unirse a postgres
-- This is in postgreSQL-- We have tableA and tableB, x is primary key in tableA and also-- a foreign key in tableB as ySELECT*FROM tableA JOIN tableB ON tableA.x = tableB.y;-- This will select all the columns from both tables that share a key
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)