Help for this page

Select Code to Download


  1. or download this
    my $t = "Bobby Tables' and HeadName=1; drop table mytable;";
    my $SQL = "select * from mytable where id='$t'";
    print $SQL, "\n";
    
  2. or download this
    select * from mytable 
    where id='Bobby Tables'
    and   HeadName=1;
    
    drop table mytable;