Help for this page

Select Code to Download


  1. or download this
    Sql::Stash->set_sql('last_downloadevent', q(select max (ymdhms) from r
    +ktrack.downloadevent),'RKG',0);
    
  2. or download this
    ...
    <% $last_downloadevent %>
    ...
    $sth->finish;
    ...
    </%init>
    
  3. or download this
    Sql::Stash->set_sql('last_downloadevent', q(select concat(max(ymdhms) 
    +,'-', now()) from rktrack.downloadevent where ?>0),'RKG',0);
    
  4. or download this
    select max(ymdhms) from rktrack.downloadevent
    
  5. or download this
    
    perl -MSql::Stash -e "my $ss=Sql::Stash->new; my $sth=$ss->sql_last_do
    +wnloadevent; $sth->execute; print $sth->fetch"