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

Combina più righe con date diverse con variabili sovrapposte (per acquisire le date della prima e dell'ultima modifica)

Prendi in considerazione l'utilizzo di un LAG funzione di finestra e aggregazione condizionale join tramite più CTE e self-join:

WITH sub AS (
  SELECT "user"
       , "type"
       , "date"
       , CASE 
            WHEN LAG("type") OVER(PARTITION BY "user" ORDER BY "date") = "type"
            THEN 0
            ELSE 1
         END "shift"
  FROM myTable 
), agg AS (
   SELECT "user"
         , MIN(CASE WHEN shift = 1 THEN "date" END) AS min_shift_dt
         , MAX(CASE WHEN shift = 1 THEN "date" END) AS max_shift_dt
   FROM sub
   GROUP BY "user"
)


SELECT agg."user"
     , s1."type" AS first_type
     , s1."date" AS first_type_initial_date
     , s2."type" AS last_type
     , s2."date" AS last_type_initial_date
FROM agg
INNER JOIN sub AS s1
  ON agg."user" = s1."user"
  AND agg.min_shift_dt = s1."date"
  
INNER JOIN sub AS s2
  ON agg."user" = s2."user"
  AND agg.max_shift_dt = s2."date"

Dimostrazione online

utente primo_tipo first_type_initial_date ultimo_tipo last_type_initial_date
A Cellulare 10-01-2019 00:00:00 Desktop 2021-01-03 00:00:00