Help for this page

Select Code to Download


  1. or download this
    $sth_get_branch_list = $dbh->prepare(q(
         SELECT branch FROM postgres_database WHERE tree = 'first_tree'
         AND branch ~ '$root\.\d+';
    ));
    
  2. or download this
    $sth_get_branch_list = $dbh->prepare(q(
         SELECT branch FROM postgres_database WHERE tree = 'first_tree'
         AND branch like '$root%';
    ));