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