Help for this page

Select Code to Download


  1. or download this
    SELECT foo FROM bar WHERE name LIKE '%ME%';
    
  2. or download this
    for (@array) {
        print "$_ matches\n" if $_ =~ /ME/;
    }