Help for this page

Select Code to Download


  1. or download this
      my $items = $self->db->resultset('Item')->search({},{
        '+select' => ...
    ...
        group_by => ...
        order_by => ...
      });
    
  2. or download this
    foreach my $value(@values) {
      my $results = $items->search({ 'joined_table.column' => $value });
    ...
      # Process and output results of this search
      ...
    }
    
  3. or download this
    my $results_query = $items->search({ 'joined_table.column' => '?' });
    
    ...
      # Process and output results of this search
      ...
    }