>  Q&A  >  본문

tp6.0 쿼리문은 이렇게 되나요? ?

$data = $this->request->post();
$where = [];
$where['status'] = 1;
$map['name'] = ['like','%'.$data['goods_name'].'%'];
$goods_list = Db::name('mall_goods')->where($map)->order($order)->select();

쿼리 오류가 발생했습니다. . . SQL 문을 인쇄하여 다음과 같은지 확인하세요:

"SELECT * FROM `tp_mall_goods` WHERE `status` = 1 AND `name` IN ('like','%发%')"

tp5는 다음을 지원합니다. 쿼리, 다음은 tp5에 대한 동일한 SQL 문입니다:

"SELECT * FROM `tp_mall_goods` WHERE `status` = 1 AND `name` LIKE '%发%'"

文1965일 전1265

모든 응답(1)나는 대답할 것이다

  • 殘留の回憶

    殘留の回憶2019-06-27 22:34:35

    PHP5는 이런 것 같아요, where('name', 'like', 'php')-

    배열의 형태는 $where['name'] =array('like',array('% 1) %','%2%'),'또는')

    회신하다
    0
  • 취소회신하다