How to Limit FIND or WHERE to a specified number of related values

$params = array(
    'select' => 't.*, COUNT( relationship.ID ) AS relationship_count',
    'groupby' => 't.ID',
    'having' => 'relationship_count < 2',
);

Questions