Help for this page

Select Code to Download


  1. or download this
                $c->model('Database1')->resultset('Table1')->search(
                    undef,
    ...
                        order_by => ['group']
                    },
                )
    
  2. or download this
    SELECT group FROM table1 me GROUP BY group ORDER BY group
    
  3. or download this
       distinct => 1
    
  4. or download this
                $c->model('Database1')->resultset('Table1')->search(
                    undef,
    ...
                        order_by => ['group']
                    },
                )
    
  5. or download this
    SELECT DISTINCT( group ) FROM table1 me ORDER BY group
    
  6. or download this
       as => '...'