私はCakephpの初心者なので、データベースクエリを実装するのが難しいと感じています..私が欲しいのは、電子メールがユーザーが与えたものと等しい携帯電話番号を更新したい..これは私が実装したいクエリです
"Update Users set mobileNo = $mobileNo where email = $email"
私はこれをやっています
$mobileNo = $data['mobileNo'];
$email = $data['$email'];
$count = $this->User->find('count', array(
'conditions' => array('User.email' => $email)));
if($count>0){
$email = $this->User->field(
'email',
array('User.mobileNo' => $mobileNo));
echo $email;
$this->User->saveField("mobileNo",$mobileNo);