Help for this page

Select Code to Download


  1. or download this
    
    1) ; (drop table student
    
  2. or download this
    my $sql = 'DELETE FROM student where student_id = ?';
    my $sth = $dbh->prepare($sql);
    ...
            $sth->execute($id);
         }
    }