Yii2 bindValue in LIKE condition

3.4k Views Asked by At

How can I do a wildcard search using bindValue(:name, $name) in LIKE condition given this query:

$post = Yii::$app->db->createCommand('SELECT * FROM fruits WHERE name LIKE %:name%')
       ->bindValue(':name', 'apple')
       ->queryOne();
1

There are 1 best solutions below

0
On BEST ANSWER

I did this and it does as I need.

$post = Yii::$app->db->createCommand('SELECT * FROM fruits WHERE name LIKE :name')
   ->bindValue(':name', '%apple%')
   ->queryOne();