Skip to main content
MySQL

MySQL - Get a data value

MySQL - Get a data value

Gets the value of a specific cell — defined by column and row — from the results of a MySQL: Query action. Direct access to one position of the result without iterating or selecting a row first.


Options

Query ID

Reference to the MySQL: Query action whose results will be used.

Column to get data

Name of the column to read, for example nome.

Row to get data

Index of the row to read. The first result is at position 0.

Returns

Javascript code

js
actions["action-id"].values // value read from the given cell (Text)

Field selection

  • values — value read from the given cell (Text)

Rules and Conditions

  • Every field is required.
  • The row index starts at 0.
  • The column name must match exactly the name returned by the query.