web-dev-qa-db-ja.com

codeigniter:2つの日付の間に投稿されたデータを取得する

Codeigniterのactiverecordを使用して2つの日付の間にレコードをクエリして、データベースからデータを取得するにはどうすればよいですか?

ありがとう

42
Thomas John

これは必要なもののように見えます:

$this->db->where('order_date >=', $first_date);
$this->db->where('order_date <=', $second_date);
return $this->db->get('orders');
110
Thorpe Obazee

これを試して:

$this->db->where('sell_date BETWEEN "'. date('Y-m-d', strtotime($start_date)). '" and "'. date('Y-m-d', strtotime($end_date)).'"');

これがうまくいくことを願って

9
Chakradhar

これは私のためにうまくいった

$this->db->where('sell_date BETWEEN "'. date('Y-m-d', strtotime($start_date)). '" and "'. date('Y-m-d', strtotime($end_date)).'"');
5
Madhu

これは私のために働いた:

$this->db->where('RecordDate >=', '2018-08-17 00:00:00');
$this->db->where('RecordDate <=', '2018-10-04 05:32:56');
2
jonmary karanzi
$query = $this->db
              ->get_where('orders',array('order_date <='=>$first_date,'order_date >='=>$second_date))
              ->result_array();
0
user28864

これがお役に立てば幸いです。

public function get_details_beetween_dates()
    {
        $from = $this->input->post('fromdate');
        $to = $this->input->post('todate');

        $this->db->select('users.first_name, users.last_name, users.email, groups.name as designation, dailyinfo.amount as Total_Fine, dailyinfo.date as Date_of_Fine, dailyinfo.desc as Description')
                    ->from('users')
                    ->where('dailyinfo.date >= ',$from)
                    ->where('dailyinfo.date <= ',$to)
                    ->join('users_groups','users.id = users_groups.user_id')
                    ->join('dailyinfo','users.id = dailyinfo.userid')
                    ->join('groups','groups.id = users_groups.group_id');

        /*
        $this->db->select('date, amount, desc')
                 ->from('dailyinfo')
                 ->where('dailyinfo.date >= ',$from)
                 ->where('dailyinfo.date <= ',$to);
        */

        $q = $this->db->get();

        $array['userDetails'] = $q->result();
        return $array;
    }

SQLの日付を比較したい場合、これを試すことができます:

$this->db->select();
$this->db->from('table_name');
$this->db->where(' date_columnname >= date("'.$from.'")');
$this->db->where( 'date_columnname <= date("'.$to.'")');

私にとってはうまくいきました(PHPとMySQL)。

0
DRO

codeigniterクエリヘルパーでBETWEENキーワードの使用を強制する場合。このコードのように、エスケープなしでfalseを使用できます。 CIバージョン3.1.5でうまく機能します。その助けを願っています。

if(!empty($tglmin) && !empty($tglmax)){
        $this->db->group_start();
        $this->db->where('DATE(create_date) BETWEEN "'.$tglmin.'" AND "'.$tglmax.'"', '',false);
        $this->db->group_end();
    }
0
drosanda

Where条件でBETWEEN '{$ startDate}' AND '{$ endDate}'と書くだけです。

->where("date BETWEEN '{$startDate}' AND '{$endDate}'")

0
Vipin Choubey