반응형
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
반응형
'MySql' 카테고리의 다른 글
MySQL 파이썬에서 mysqldb로 먼저 ssh (0) | 2020.09.22 |
---|---|
MySQL 뒤로 버튼을 누를 때 강제로 다시로드 / 새로 고침 (0) | 2020.09.22 |
MySQL 중첩 된 쿼리를 기반으로 테이블에서 SQL-Delete (0) | 2020.09.22 |
MySQL MYSQL에서 ORDER BY 및 LIMIT가 작동하지 않는 업데이트 (0) | 2020.09.22 |
MySQL 이진 데이터 유형에 MySql 삽입 문? (0) | 2020.09.22 |
댓글