BIND_COLUMNS

All functions > CORE > BIND_COLUMNS

Binds columns from a table to the given features.

Signatures

Returns: A table with the selected columns bound to features

BIND_COLUMNS(columns: ARRAY<VARCHAR>, source_type: VARCHAR, source_content: VARCHAR) → TABLE<T>
sql
ParameterTypeRequiredDescription
columnsARRAY<VARCHAR>YesArray of column names to select from the source
source_typeVARCHARYesType of source: TABLE, SQL, CSV, or JSON
source_contentVARCHARYesThe source content (table name, SQL query, CSV text, or JSON text)

Notes

  • Binds specific columns from a source to features
  • Supports multiple source types: TABLE(name), SQL(query), CSV(data), JSON(data)
  • Column names are mapped to feature names in order
  • Provides a simpler alternative to BIND_SQL for basic selections
  • The number of columns must match the number of features
  • Part of the FeatureMesh binding system
Last update at: 2026/03/03 16:47:38
Last updated: 2026-03-03 16:48:19