⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Calculating a value by code
  • Calculation order and calculation order error, how to show the field in a place other than the calculation order
  • Recalculation unit of tables, recalculation of rows and their order
  • Header in simple and calculated tables
  • Using the functions
  • Using the if and select functions as an example
  • How the where and order parameters work, by the example of select
  • The difference between a single value and a list, operations on lists (sum, min, max, count)
  • Using math for mathematical operations
  • Using str to combine text
  • Fixing a calculation when executing codes
  • Manual values
  • Execute code only when adding
  • The $#nd, $#ndt and $#ntn quick variables
  • Dates processing
  • Calculation errors and their details
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • How the where and order parameters work, by the example of select

    table_recalc

    Can I specify more than one where and order parameter?

    Yes — these are multiple parameters.

    In what order are where and order applied?

    where and order — multiple parameters and are applied from left to right. They both have a non-single structure.

    where:

    where: + 'FIELD_NAME' + COMPARISON_OPERATOR + VALUE_FOR_COMPARISON


    =:
    select(table: 'payments'; field: 'summ'; where: 'order_id' = #id)

    =:
    selectList(table: 'clients'; field: 'client_name'; where: 'total' > $calc) calc: #plan_for_manager * 4

    The following comparisons are available:

    order:

    order: + 'FIELD_NAME' + SORT_DIRECTION


    =:
    selectList(table: 'clients'; field: 'client_name'; order: 'income_group' desc; order: 'client_name' asc) // first they will be sorted by income_group in descending order, and those in the same group by client_name in ascending order
    • asc — ascending.

    • desc — descending.

    If the sort direction is not specified, it will be ascending asc by default.

    How do I specify whether to sort in ascending or descending order?

    • asc — ascending.

    • desc — descending.

    If the sorting direction is not specified, it will be ascending asc by default.

    Do I have to use sorting?

    No. If not specified, the values for the lists will be returned in random order.

    How do I turn off where by conditions?

    You need to pass the value *ALL* to where:


    =:
    selectList(table: 'clients'; field: 'client_name'; where: 'total' > $if) if: if(condition: #total > 10000; then: "*ALL*"; else: #total)

    If the value in the total field is greater than 10000, the where parameter in the selectList function will be disabled.