12345678910111213141516171819202122232425262728293031323334353637 |
- /* syntax version 1 */
- /* postgres can not */
- use plato;
- insert into @tmp
- select
- Just('foo') as driver_license_pd_id,
- 'bar' as order_id,
- '1' as user_phone_pd_id,
- '2' as utc_order_dttm;
- commit;
- SELECT
- driver_license_pd_id,
- user_phone_pd_id,
- utc_order_dttm,
- order_id,
- LEAD(
- <|"order_id": order_id, "order_dttm": utc_order_dttm|>,
- 1
- ) OVER (
- PARTITION BY user_phone_pd_id
- ORDER BY utc_order_dttm
- ) AS next_user_order,
- LEAD(
- <|"order_id": order_id|>,
- 1
- ) OVER (
- PARTITION BY driver_license_pd_id
- ORDER BY utc_order_dttm
- ) AS next_driver_order,
-
- FROM @tmp;
|