Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare("select * from campaigns where mw_export='yes'
    + and last_update > ?");
    $sth->execute(last_transfer{'campaigns'});
    ...
    print "It takes me over 30 minutes to print this!!!\n";
    
    }
    
  2. or download this
    alter table campaigns add index mw_export (mw_export);
    alter table campaigns add index last_update (last_update);