A
albertchen
Unregistered / Unconfirmed
GUEST, unregistred user!
物理表:
table1:
productid(产品代码) startdate(开始日期) enddate(结束日期) qty(数量/天)
001 2002-3-1 2002-3-5 10
002 2002-3-1 2002-3-9 20
请问要怎样才能生成这样的视图:
productid(产品代码) date(日期) qty(数量/天)
001 2002-3-1 10
001 2002-3-2 10
001 2002-3-4 10
001 2002-3-5 10
002 2002-3-1 20
002 2002-3-2 20
...
就是把开始日期和结束日期拆分开
table1:
productid(产品代码) startdate(开始日期) enddate(结束日期) qty(数量/天)
001 2002-3-1 2002-3-5 10
002 2002-3-1 2002-3-9 20
请问要怎样才能生成这样的视图:
productid(产品代码) date(日期) qty(数量/天)
001 2002-3-1 10
001 2002-3-2 10
001 2002-3-4 10
001 2002-3-5 10
002 2002-3-1 20
002 2002-3-2 20
...
就是把开始日期和结束日期拆分开