當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyflink Table.offset用法及代碼示例


本文簡要介紹 python 語言中 pyflink.table.Table.offset 的用法。

用法:

offset(offset: int) → pyflink.table.table.Table

從偏移位置限製(可能已排序)結果。

此方法可以與前麵的 order_by() 調用結合使用以獲得確定性順序,並與後續的 fetch() 調用結合使用以在跳過前 o 行後返回 n 行。

例子:

# skips the first 3 rows and returns all following rows.
>>> tab.order_by(tab.name.desc).offset(3)
# skips the first 10 rows and returns the next 5 rows.
>>> tab.order_by(tab.name.desc).offset(10).fetch(5)

對於無界表,此操作需要後續的 fetch 操作。

參數:

offset- 要跳過的記錄數。

返回:

結果表。

相關用法


注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 pyflink.table.Table.offset。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。