Help for this page

Select Code to Download


  1. or download this
    WHERE ((x Is Not Null) AND ([Today's Date]> ?))
    
  2. or download this
    my $dbh = (
       'connection string', 'user', 'pass',
    ...
       where [Today's Date] > ?
    |);
    $sth->execute($date);
    
  3. or download this
    my $sth = $dbh->prepare(q|
       select [Today's Date] from Referrals
    |);
    $sth->execute();