本文介绍了PostgreSQL:选择单行x次的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

表中的一行包含一个整数值> = 1的列,并且必须多次选择该列。因此,如果该列具有 2,我希望select查询返回单行2次。

A single row in a table has a column with an integer value >= 1 and must be selected however many times the column says. So if the column had '2', I'd like the select query to return the single-row 2 times.

这怎么实现?

推荐答案

不知道为什么要这样做,但是...

Don't know why you would want to do such a thing, but...

CREATE TABLE testy (a int,b text);
INSERT INTO testy VALUES (3,'test');
SELECT testy.*,generate_series(1,a) from testy;  --returns 3 rows

这篇关于PostgreSQL:选择单行x次的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 05:02