Hóa ra điều này không được SA hỗ trợ trực tiếp, nhưng hành vi chính xác có thể đạt được với ColumnClause
và FunctionElement
. Nhập lần đầu tiên công thức này
như được mô tả bởi zzzeek
trong vấn đề SA này
. Sau đó, tạo một unnest
đặc biệt hàm bao gồm WITH ORDINALITY
bổ ngữ:
class unnest_func(ColumnFunction):
name = 'unnest'
column_names = ['unnest', 'ordinality']
@compiles(unnest_func)
def _compile_unnest_func(element, compiler, **kw):
return compiler.visit_function(element, **kw) + " WITH ORDINALITY"
Sau đó, bạn có thể sử dụng nó để kết hợp, sắp xếp, v.v. như thế này:
act_ref = unnest_func(Activity.ob_refs)
query = (query
.add_columns(act_ref.c.unnest, act_ref.c.ordinality)
.outerjoin(act_ref, sa.true())
.outerjoin(Subscription, Subscription.ob_ref == act_ref.c.unnest)
.order_by(act_ref.c.ordinality.desc()))