PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Restituisci tutti i record storici per i conti con modifica del valore associato specifico

Penso che tu voglia che le funzioni della finestra confrontino il valore:

select t.*
from (select t.*,
             min(t.value) over (partition by t.acct_id) as min_value,
             max(t.value) over (partition by t.acct_id) as max_value
      from t
     ) t
where min_value <> max_value;