CONSTLIST

A CONSTLIST in AQL is a list of constant values.

These are usually strings (encased in single-quotes) or numbers.

Constants are usually used as parameters to FUNCTION.

A single constant by itself is converted into a CONSTLIST. You can also create your own list by placing several comma-delimited constants inside brackets.

A Single-Item List

  'Wind Turbine #1'

Multiple Constants

  ('Wind Turbine #1','Wind Turbine #2')