Build one SQL query to create a cohort of Signup to First Order and show the result. The
objective of this cohort is to see, out of the users that signed up in Week N, how many did their
first order in Week N+1, N+2, N+3...
As an input, you have 2 tables :
- one with user_id, signup_timestamp
- and a second one with user_id, order_timestamp
Make it scalable.