Help for this page

Select Code to Download


  1. or download this
    SELECT column FROM table ORDER BY RAND() LIMIT 20;
    
  2. or download this
    my @tickers = $schema->resultset( 'TickerTable' )->search(
                           {},
    ...
                             columns => ['DisplayName'],                  
    +                           
                             rows => 20                                   
    +                           
                           });