You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Reduces the input object to the given attributes.Makes no duplicate eleminition.

Parameter

  • attributes: A list of attribute names to project on

Example

PQL
Project Operator
output = PROJECT({
                  attributes = ['auction', 'bidder']
                 }, input)
CQL
Project Operator
SELECT auction, bidder FROM input
  • No labels