Help for this page

Select Code to Download


  1. or download this
    SELECT n.id
      FROM nodes n, meta_data md
    ...
       AND md.value = "green"
       AND n.id = md.node_id
     ORDER BY 1
    
  2. or download this
    my $sql = <<'__END__';
    SELECT n.id
    ...
    $sth->execute($attr, $value) || die $!;
    # Use your favorite fetch*() method here
    $sth->finish;