order_by

column ordering options

Enum values

  • asc in the ascending order, nulls last

  • asc_nulls_first in the ascending order, nulls first

  • asc_nulls_last in the ascending order, nulls last

  • desc in the descending order, nulls first

  • desc_nulls_first in the descending order, nulls first

  • desc_nulls_last in the descending order, nulls last

Definition

enum order_by {
  asc
  asc_nulls_first
  asc_nulls_last
  desc
  desc_nulls_first
  desc_nulls_last
}