我怎么能在sql hive中添加一个计数来对空值进行排序?

eaf3rand  于 2021-04-07  发布在  Hive
关注(0)|答案(1)|浏览(485)

这就是我现在的情况

| time  | car_id | order | in_order |
|-------|--------|-------|----------|
| 12:31 | 32     | null  | 0        |
| 12:33 | 32     | null  | 0        |
| 12:35 | 32     | null  | 0        |
| 12:37 | 32     | 123   | 1        |
| 12:38 | 32     | 123   | 1        |
| 12:39 | 32     | 123   | 1        |
| 12:41 | 32     | 123   | 1        |
| 12:43 | 32     | 123   | 1        |
| 12:45 | 32     | null  | 0        |
| 12:47 | 32     | null  | 0        |
| 12:49 | 32     | 321   | 1        |
| 12:51 | 32     | 321   | 1        |

我试图对订单进行排序,包括那些空值的订单,在这种情况下,是按car_id来排序的。

| time  | car_id | order | in_order | row |
|-------|--------|-------|----------|-----|
| 12:31 | 32     | null  | 0        | 1   |
| 12:33 | 32     | null  | 0        | 1   |
| 12:35 | 32     | null  | 0        | 1   |
| 12:37 | 32     | 123   | 1        | 2   |
| 12:38 | 32     | 123   | 1        | 2   |
| 12:39 | 32     | 123   | 1        | 2   |
| 12:41 | 32     | 123   | 1        | 2   |
| 12:43 | 32     | 123   | 1        | 2   |
| 12:45 | 32     | null  | 0        | 3   |
| 12:47 | 32     | null  | 0        | 3   |
| 12:49 | 32     | 321   | 1        | 4   |
| 12:51 | 32     | 321   | 1        | 4   |

我只是不知道如何管理null值的计数。 谢谢!!!!!!!!!。

mwg9r5ms

mwg9r5ms1#

你可以计算每行前的非空值的数量,然后使用dense_rank()

select t.*,
       dense_rank() over (partition by car_id order by grp) as row
from (select t.*,
             count(order) over (partition by car_id order by time) as grp
      from t
     ) t;

相关问题