$select
=
$this
->select()
->from(array(
'u'
=>
'users'
), array(
'id'
,
'username'
))
->where(
'name like ?'
,
"%php%"
)
->where(
'user_id=?'
,
'5'
)
->where(
'rating<=?'
,
10
);