- or download this
SELECT ID,
sentence
FROM texts
WHERE sentence LIKE '% $query %'
- or download this
SELECT ID,
sentence
FROM texts
...
OR sentence LIKE '$query %'
OR sentence LIKE '% $query'
OR sentence = '$query'
- or download this
SELECT ID,
sentence
FROM texts
WHERE sentence LIKE '%$query%'
- 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/;
}