sql >> Database >  >> RDS >> PostgreSQL

opeenvolgende tijdsintervallen groeperen in sql

Je kunt variabelen prima gebruiken in PL/pgSQL.

Ik zou dit oplossen met een tabelfunctie.

Ervan uitgaande dat de tabel stock heet , zou mijn code er als volgt uitzien:

CREATE OR REPLACE FUNCTION combine_periods() RETURNS SETOF stock
   LANGUAGE plpgsql STABLE AS
$$DECLARE
   s stock;
   period stock;
BEGIN
   FOR s IN
      SELECT stock_name, action, start_date, end_date
      FROM stock
      ORDER BY stock_name, action, start_date
   LOOP
      /* is this a new period? */
      IF period IS NOT NULL AND
         (period.stock_name <> s.stock_name
            OR period.action <> s.action
            OR period.end_date <> s.start_date)
      THEN
         /* new period, output last period */
         RETURN NEXT period;
         period := NULL;
      ELSE
         IF period IS NOT NULL
         THEN
            /* period continues, update end_date */
            period.end_date := s.end_date;
         END IF;
      END IF;

      /* remember the beginning of a new period */
      IF period IS NULL
      THEN
         period := s;
      END IF;
   END LOOP;

   /* output the last period */
   IF period IS NOT NULL
   THEN
      RETURN NEXT period;
   END IF;

   RETURN;
END;$$;

En ik zou het zo noemen:

test=> SELECT * FROM combine_periods();
┌────────────┬─────────┬────────────┬──────────┐
│ stock_name │ action  │ start_date │ end_date │
├────────────┼─────────┼────────────┼──────────┤
│ google     │ falling │          3 │        4 │
│ google     │ growing │          1 │        3 │
│ google     │ growing │          4 │        5 │
│ yahoo      │ growing │          1 │        2 │
└────────────┴─────────┴────────────┴──────────┘
(4 rows)



  1. Wijzigingsmelding Oracle-database met ODP.NET werkt niet

  2. Hoe veel rijen uit een veelgebruikte tabel te verwijderen

  3. Hoe de cursorwaarde op te halen met %ROWTYPE

  4. Bestandspad van geüploade afbeelding opslaan in MySQL-database