up vote 11 down vote favorite
2
share [g+] share [fb]

Here's my attempt at it:

$query = $database->prepare('SELECT * FROM table WHERE column LIKE "?%"');
$query->execute(array('value'));
while ($results = $query->fetch())
{
	echo $results['column'];
}
link|improve this question

50% accept rate
feedback

2 Answers

up vote 13 down vote accepted

Figured it out right after I posted:

$query = $database->prepare('SELECT * FROM table WHERE column LIKE ?');
$query->execute(array('value%'));
while ($results = $query->fetch())
{
    echo $results['column'];
}
link|improve this answer
That's not Murphy's law ;) – Crescent Fresh Feb 24 '09 at 20:22
3  
You're a weiner. – Andrew G. Johnson Feb 24 '09 at 22:07
feedback

To use Like with % partial matching you can also do this: column like concat('%', :something, '%') (in other words, using explicitly unescaped % signs that are definitely not user input) with the named parameter :something.

@bobince mentions here that:

The difficulty comes when you want to allow a literal % or _ character in the search string, without having it act as a wildcard.

So that's something else to watch out for when combining like and parameterization.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.