# File test/src/sql.rb, line 197
  def to_s
    result = exprs.join(', ')
    unless having.nil?
      result << " having #{having}"
    end
    result
  end