| Author |
Message |
l.nethaji
New User
Joined: 16 Mar 2008 Posts: 4 Location: tamil nadu
|
|
|
|
i want to generate a seq_no at pol_id level
for example
The output should look like the below resultant set
ownerid polid seq_no
a1 123 1
a1 234 2
a1 345 3
a2 001 1
a2 765 2
a3 233 1
a4 444 1
whether we can go with the below query .
Select ownerid, poled, row_number() over (partition by ownerid order by polid asc) as seq_no
whether DB2 supports partition by function
Please let me know if u have any solution to this scenario.
Thanks
L.Nethaji |
|
| Back to top |
|
 |
References
|
Posted: Fri May 09, 2008 4:41 pm Post subject: Re: Db2 query : equivalent function for partion by as in oracle |
 |
|
|
 |
the_gautam
Active User
Joined: 05 Jun 2005 Posts: 94 Location: Bangalore
|
|
|
|
what is your table structure?
| Quote: |
| want to generate a seq_no at pol_id level |
is seq_no not a column in your table? |
|
| Back to top |
|
 |
|
|