sql >> Base de Datos >  >> RDS >> PostgreSQL

auto-unión postgresql

SELECT a.value AS thisval ,b.value AS thatval
FROM table AS a JOIN table AS b USING (device)
WHERE a.command='this' AND b.command='that';