Help for this page

Select Code to Download


  1. or download this
    my %where = (
        status => ['Offered','Denied','Cancelled','Conditional Offer'],
        sent_email => { '!=' => [ -and => undef, '0000-00-00' ] },
    );
    
  2. or download this
    use strict; use warnings; use feature 'say';
    use Data::Dumper;
    ...
    say Dumper \@bind;
    
    __END__
    
  3. or download this
    SELECT sent_email FROM TblRequests WHERE ( ( ( sent_email IS NOT NULL 
    +AND sent_email != ? ) AND ( status = ? OR status = ? OR status = ? OR
    + status = ? ) ) )
    $VAR1 = [
    ...
      'Cancelled',
      'Conditional Offer'
    ];