Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE TableIndex
    (
        table_date    date,
        table_id      integer
    )
    
  2. or download this
    my ($dbh,$sth,$sql);
    
    ...
    # insert the data into the new table
    $sql = qq/INSERT INTO "$table_id" VALUES (?,?)/;
    # now insert your data...etc