web-dev-qa-db-ja.com

CodeIgniter:WHERE句とOR句の使用方法

次のコードを使用して、Code Igniter webappを使用してMySQLデータベースから選択します。

$query = $this->db->get_where('mytable',array('id'=>10));

これはうまくいきます!しかし、私はCIライブラリを使用して次のMySQLステートメントを書きたいですか?

SELECT * FROM `mytable` WHERE `id`='10' OR `field`='value'

何か案は?ありがとう!

24
tarnfeld
$where = "name='Joe' AND status='boss' OR status='active'";

$this->db->where($where);
40
Dylan

そのためにor_where()を使用できます-CIドキュメントからの例:

$this->db->where('name !=', $name);

$this->db->or_where('id >', $id); 

// Produces: WHERE name != 'Joe' OR id > 50
30
Rookwood

これを使用できます:

$this->db->select('*');
$this->db->from('mytable');
$this->db->where(name,'Joe');
$bind = array('boss', 'active');
$this->db->where_in('status', $bind);
12
Wassim Sboui

アクティブレコードメソッドor_whereが使用されます。

$this->db->select("*")
->from("table_name")
->where("first", $first)
->or_where("second", $second);
6
Raham
_$where = "name='Joe' AND status='boss' OR status='active'";

$this->db->where($where);
_

私は1か月の3/4遅れていますが、where句が定義された後、次を実行します... $this->db->get("tbl_name");

3
Pullat Junaid

私のために働いたもの:

  $where = '';
   /* $this->db->like('ust.title',$query_data['search'])
        ->or_like('usr.f_name',$query_data['search'])
        ->or_like('usr.l_name',$query_data['search']);*/
        $where .= "(ust.title like '%".$query_data['search']."%'";
        $where .= " or usr.f_name like '%".$query_data['search']."%'";
        $where .= "or usr.l_name like '%".$query_data['search']."%')";
        $this->db->where($where);



$datas = $this->db->join(TBL_USERS.' AS usr','ust.user_id=usr.id')
            ->where_in('ust.id', $blog_list) 
            ->select('ust.*,usr.f_name as f_name,usr.email as email,usr.avatar as avatar, usr.sex as sex')
            ->get_where(TBL_GURU_BLOG.' AS ust',[
                'ust.deleted_at'     =>  NULL,
                'ust.status'     =>  1,
            ]); 

このようなクエリを作成するには、これを行う必要があります。

SELECT `ust`.*, `usr`.`f_name` as `f_name`, `usr`.`email` as `email`, `usr`.`avatar` as `avatar`, `usr`.`sex` as `sex` FROM `blog` AS `ust` JOIN `users` AS `usr` ON `ust`.`user_id`=`usr`.`id` WHERE (`ust`.`title` LIKE '%mer%' ESCAPE '!' OR  `usr`.`f_name` LIKE '%lok%' ESCAPE '!' OR  `usr`.`l_name` LIKE '%mer%' ESCAPE '!') AND `ust`.`id` IN('36', '37', '38') AND `ust`.`deleted_at` IS NULL AND `ust`.`status` = 1 ;
1
LOKENDRA