PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

auto-jointure 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';