Help for this page

Select Code to Download


  1. or download this
    SELECT  ID,
            sentence  
    FROM    texts
    WHERE   sentence LIKE '% $query %'
    
  2. or download this
    SELECT  ID,
            sentence  
    FROM    texts
    ...
       OR   sentence LIKE '$query %'
       OR   sentence LIKE '% $query'
       OR   sentence = '$query'
    
  3. or download this
    SELECT  ID,
            sentence  
    FROM    texts
    WHERE   sentence LIKE '%$query%'
    
  4. or download this
    my $sth = $dbh->prepare(<<'EOSQL');
    SELECT  ID,
            sentence  
    ...
    while (my @row = $sth->fetchrow_array) {
        push @$results, \@row if $row[1] =~ /\b\Q$query\E\b/;
    }