본문 바로가기
MySql

MySQL Joomla 1.7에서 AND로 'WHERE'절 조건을 작성하는 방법은 무엇입니까? 업데이트 할 데이터가 없습니다.

by 베이스 공부 2020. 9. 22.
반응형

joomla에서 AND 를 사용하여 다음 UPDATE 쿼리를 작성하는 방법을 제안하십시오.

암호:

$query = JFactory::getDbo()->getQuery(true);
$db =& JFactory::getDBO();
$query->update('table1');
$query->set('id = ' . $db->quote($idname));
$query->set ('day='. $db->quote($this->_day));
$query->set('id2 = ' . $id2);

$query->where('id = '. (int)$idname)
        AND('id2=' .(int)$id2 );

업데이트가 실패하고 오류는 다음과 같습니다.

//........[something before ]....

array(3) {
    [0]=>
    string(11) "id = '1'"
    [1]=>
    string(14) "id2='2'"
    [2]=>
    string(17) "date = 2012-04-02"    [it seems i got all the value pass to be update]
  }
  ["glue:protected"]=>
  string(4) "
, "
}
["where:protected"]=>
object(JDatabaseQueryElement)#251 (3) {
  ["name:protected"]=>
  string(5) "WHERE"
  ["elements:protected"]=>
  array(1) {
    [0]=>
    string(14) "id = 2"  [where clause is ok  ...BUT with AND...]
  }
  ["glue:protected"]=>   
  string(5) " AND "
}
["group:protected"]=>  [something is wrong here...?]
NULL
["having:protected"]=>
NULL
["columns:protected"]=>
NULL
["values:protected"]=>
NULL
["order:protected"]=>
NULL
["autoIncrementField:protected"]=>
NULL
}

 

해결 방법

 

Joomla 업데이트 쿼리에 대해 잘 모르겠지만 다음과 같이 생각합니다.

$query->where('id = '. (int)$idname);
$query->AND('id2=' .(int)$id2 );

또는:-

$query->where('id = '. (int)$idname . 'AND id2 = '.(int)$id2);

 

참조 페이지 https://stackoverflow.com/questions/9074543

 

 

반응형

댓글