row_number() over( partition by coalesce( cc.cust_id_define, lot_hs.customer_id )
时间: 2024-04-25 12:26:56 浏览: 139
oracle分析函数row_number() over()使用
4星 · 用户满意度95%
这是一个 SQL 查询语句中的窗口函数,具体作用是根据 coalesce 函数的返回值对结果集进行分组,然后对每个分组内的行进行编号,编号的起始值为1。其中 coalesce 函数用于判断 cc.cust_id_define 和 lot_hs.customer_id 是否为 null,如果其中一个为 null,则返回另一个非 null 的值。
阅读全文