PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Postgresql-Selbstbeitritt

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