[整理]一行变多行(Oracle)

来源: http://www.itpub.net/thread-1156433-1-1.html
cjh2000提问:
现有数据表中的数据形式为: 
      名称  数量  单价
       a       4      10
       b       2       8
现在能否通过一个SQL语句将其变成:
      名称     数量      单价
       a             1              10
       a             1              10
       a             1              10
       a             1              10
       b             1               8
       b             1               8   

grova解答:
SQL> create table tt(name varchar2(10),num number,price number);


表已创建。

SQL> insert into tt values('a',4,10);


已创建 1 行。

SQL> insert into tt values('b',2,8);


已创建 1 行。

SQL> commit;


SQL> select name,1 num,price
  2  from tt,(select rownum rn from dual connect by level<=5)
  3  where rn between 1 and num
  4  order by name;


NAME              NUM      PRICE
---------- ---------- ----------
a                   1         10
a                   1         10
a                   1         10
a                   1         10
b                   1          8
b                   1          8

已选择6行。

atgc解答:
SQL> select * from test;


NA         F1         F2
-- ---------- ----------
a           4         10
b           2          8

SQL> select * from test2;


        RN
----------
         1
         2
         3
         4

SQL> select a.name,1 f1,a.f2 from test a,test2 b
  2  where b.rn<=a.f1;


NA         F1         F2
-- ---------- ----------
a           1         10
a           1         10
a           1         10
a           1         10
b           1          8
b           1          8

6 rows selected.

转帖:利用整数表解决复杂SQL查询——案例二
http://space.itpub.net/15203236/viewspace-590898
问题描述:

Count汇聚一组行,并告诉每一组有多少行数据。但是,如果想得到相反的过程,将汇聚结果回推到多行数据时,该怎么办呢?

一旦得到了汇聚数据,将其分离开来就会十分棘手。例如,有一个包含宾馆房间预订的表bookings,每一行都有一个指明预订第一夜的日期、总费用以及预订天数。

Startwhn
Visitprice
Nights
2005-01-01
100
2
2005-02-01
200
5

在已知这些信息的情况下,弄清楚某个特定夜晚被预订了多少个房间是件困难的事情。我们希望处理这些信息,以便得到这样的结果:客人停留的每一夜都包含一行。Desired表的格式如下:

Startwhn
Whn
prices
2005-01-01
2005-01-01
50
2005-01-01
2005-01-02
50
2005-02-01
2005-02-01
40
2005-02-01
2005-02-02
40
2005-02-01
2005-02-03
40
2005-02-01
2005-02-04
40
2005-02-01
2005-02-05
40

很容易从desired得到booking,但这是我们需要做的事情的反过程:

Select startwhn,sum(price),count(price)
From desired group by startwin;

解决方案:

从booking得到desired需要更深入的思考,可是通过使用一个整数表来解决这个问题:
Integers表包含了单个列,保存了从1到某个更大整数之间的数字,在本问题的情况下,integers表至少要达到任何客人预订的最大天数。这样:
Create table integers(n int primary key);
Insert into integers values(1);
Insert into integers values(2);
Insert into integers values(3);
Insert into integers values(4);
Insert into integers values(5);
……..
或者也可以这样来实现插入数据:
Insert into integers select rownum rn from dual connect by level<=5;

在各种查询中integers都是一个有用的表,生成desired表的关键是将integers交叉连接到bookings上,使用条件n不大于nights:

SQL> select startwhn,startwhn+n-1 as whn, visitprice/nights as price
2 from bookings,integers        
3 where n between 1 and nights;

STARTWHN      WHN                PRICE
-------------- -------------- ----------
01-1月-05    01-1月-05            50
01-1月-05    02-1月-05            50
01-2月-05    01-2月-05            40
01-2月-05    02-2月-05            40
01-2月-05    03-2月-05            40
01-2月-05    04-2月-05            40
01-2月-05    05-2月-05            40

已选择7行。

猜你喜欢

转载自benjaminyu.iteye.com/blog/1844901