in reply to How to select limited rows randomly in DBIx::Class?

See also Helper::ResultSet::Random which would (I believe) give the lovely syntax:

my @tickers = $schema->resultset( 'TickerTable' )->rand(20)->search({} +, { columns => ['DisplayName'] });

Good Day,
    Dean