PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie bekomme ich das Äquivalent zum Postgres-Befehl 'nth_value' in Pyspark Hive SQL?

Eine alternative Option ist row_number() und eine bedingte Fensterfunktion:

select
    name,
    weight,
    coalesce(
        max(case when rn = 4 then weight end) over(order by rn),
        99.9
    ) imagined_weight
from (select c.*, row_number() over(order by weight) rn from cats c) c