为什么这个离开加入工作?

I am having trouble with this block of code. The error is near LIKE. This is the code...

try {
    $st = $db->query('SELECT', "SELECT a.`fast_cash` as `fast`, a.`urgent_cash` as `urgent`, b.`store_name` as `store` FROM `Locations` a LEFT JOIN `loan_balances` b ON b.`store_name` LIKE '%' + a.`nick` + '%'", 'array'); 
} catch (Exception $e) {
    echo $e->getMessage();
}

The on clause you are looking for is:

ON b.`store_name` LIKE concat('%', a.`nick`, '%')

No where clause is needed for this query.