Help for this page

Select Code to Download


  1. or download this
        select username from user where address=foo@ebi-llc.com
    
  2. or download this
        my $sql = qq(select username from user where address=?);
        my $sth1 = $dbh->prepare($sql);
        $sth1 -> execute ($address);