PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

auto-junção 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';