Help for this page

Select Code to Download


  1. or download this
    my $sql = "INSERT into 1985_onwards_slim_I
      (Year_of_death, Ageyears, Sex, Undcause, OAcode)
        SELECT Col003, Col020, Col023, Col029, Col051
            from 1985_onwards_full_data_set";
    $dbh->do($sql);
    
  2. or download this
    my $sth = $dbh->prepare($sql);
    $sth->execute();