Skip to content

Commit 2498849

Browse files
authored
Create 06_04.sql
1 parent 2e9e0bb commit 2498849

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

06_04.sql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
select order_id, customer_id, order_timestamp,
2+
row_number() over (partition by customer_id order by order_timestamp asc) as order_seq_num
3+
4+
from orders

0 commit comments

Comments
 (0)