SmartStepping1.ecl 404 B

123456789101112131415
  1. //
  2. // Example code - use without restriction.
  3. //
  4. IMPORT $;
  5. IDX := $.DeclareData.IDX__Person_State_City_Zip_LastName_FirstName_Payload;
  6. Filter := IDX.State = 'LA' AND IDX.City = 'ABBEVILLE';
  7. //filter by the leading index elements
  8. //and sort the output by a trailing element
  9. OUTPUT(SORT(IDX(Filter),FirstName),all); //the old way
  10. OUTPUT(STEPPED(IDX(Filter),FirstName),all); //Smart Stepping