⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • 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
  • How do comparisons work in codes?
  • How do I check if one list contains another?
  • How to turn off where by the conditions
  • The insert line has no id
  • How to create lists fast
  • How do I take a row from a table and then get data from it?
  • What are associated array lists?
  • Specifying a field name by code, specifying a line of code by code?
  • A list of lists and turning it into a list
  • How do I sequentially go through the list and complete it or overwrite the values?
  • How do I filter and sort a list or a list of associated arrays?
  • Getting information about manual values, tree level, selects
  • How do while and var work? Replacing with listReplace
  • How to optimize the execution of the same code with variables passed to it?
  • How to use cond for condition?
  • How do I use the value of the previous row to calculate the current one?
  • Why do I need a column-by-column recalculation in the calculated and temporal tables?
  • How do I use the previous value in codes and combine manual input and code?
  • Row and rowList operations
  • 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 do I take a row from a table and then get data from it?

    How can I take several fields from another table in one query?

    Let's consider the following code:


    =:
    if(condition: $select_1; condition: $select_2; condition: $select_3; then: 10; else: "") select_1: select(table: 'table'; field: 'field_1'; where: 'id' = #num) select_2: select(table: 'table'; field: 'field_2'; where: 'id' = #num) select_3: select(table: 'table'; field: 'field_3'; where: 'id' = #num)

    In this code, we have 3 queries to the same row of the table, but to different fields. It would be much more efficient to fetch all three fields in one query, store them, and reuse them. So, let's do:


    =:
    if(condition: $select[field_1]; condition: $select[field_2]; condition: $select[field_3]; then: 10; else: "") ~select: selectRow(table: 'table'; field: 'field_1'; field: 'field_2'; field: 'field_3'; where: 'id' = #num)

    Using selectRow, we fetch multiple fields from a row at once.

    We use ~ so that the result is stored upon the first execution, and the subsequent two condition checks do not query the table again.

    The result of selectRow is a row that contains 3 values — field_1, field_2, and field_3. To access their values in condition, we use [].

    Is it possible to pass a list of fields to selectRow with code?

    Yes, there is a fields parameter where we can pass an automatically generated list of fields.

    For example, if we want to get the values of all columns, we can retrieve them from the Tables fields table:


    =:
    selectRow(table: 'table'; fields: $sel; where: 'id' = #num) sel: selectList(table: 'tables_fields'; field: 'name'; where: 'table_name' = "table"; where: 'category' = "column")

    How to access an element of a row that we got by code?

    Through []$select[key].

    All standard totum references can be used in square brackets:


    e1:
    $select[$value] value: "field_1" e2: $select[#value] // The value of the field value is field_2 e3: $select[$#nf] e4: $select[$$row] row: "key" key: "field_3" ~select: selectRow(table: 'table'; field: 'field_1'; field: 'field_2'; field: 'field_3'; where: 'id' = #num)

    What is the difference in load between multiple select and selectRow

    There are different numbers of database queries. Thus, a single selectRow query wins in terms of speed.

    Will there be a speed improvement if I forget to put ~ ?

    No. If the value is not fixed at the first call, the number of database queries will be the same as when using multiple select statements.