Skip to content
Snippets Groups Projects
MaxFieldSpecification.php 502 B
Newer Older
  • Learn to ignore specific revisions
  • jaapjansma's avatar
    jaapjansma committed
    <?php
    /**
     * @author Jaap Jansma <jaap.jansma@civicoop.org>
     * @license AGPL-3.0
     */
    
    namespace Civi\DataProcessor\DataSpecification;
    
    class MaxFieldSpecification extends FieldSpecification {
    
      /**
       * Returns the select statement for this field.
       * E.g. COUNT(civicrm_contact.id) AS contact_id_count
       *
       * @param String $table_alias
       * @return string
       */
      public function getSqlSelectStatement($table_alias) {
        return "MAX(`{$table_alias}`.`{$this->name}`) AS `{$this->alias}`";
      }
    
    }