SQL - GENERATE_SERIES / Sequences
SELECT * FROM GENERATE_SERIES(1, 10);
Read more →SELECT * FROM GENERATE_SERIES(1, 10);
Read more →PostgreSQL’s GENERATE_SERIES function creates a set of values from a start point to an end point, optionally incrementing by a specified step. Unlike application-level loops, this set-based…