SQL Query to return N rows from dual

前端 未结 10 2110
盖世英雄少女心
盖世英雄少女心 2021-02-13 10:31

I want to write a SQL query which accepts a bind variable (say :NUM) and its output consists of one column & :NUM number of rows, each row having its row number. i.e. if we

10条回答
  •  情深已故
    2021-02-13 11:32

    Depends on database various method can be used.

    PostgreSQL has a nice feature -- series.

    To get what you want just want:

    SELECT * FROM generate_series(1, NUM);
    

提交回复
热议问题