加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

mysql – 如何在joomla 1.7中使用AND编写’WHERE’子句条件?我

发布时间:2020-12-11 23:42:34 所属栏目:MySql教程 来源:网络整理
导读:请建议如何在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(

请建议如何在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);

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读