Как получить значение JSON по условию из базы данных в codeigniter - PullRequest
0 голосов
/ 05 ноября 2019

See in the image where you can check the records. player1 field records are in json format. i want to get the record accordingly the phoneNumber which field are inside player1 column. i had tried to fetch the record on condition like.

public function cmplFirstRdDetails($userMobileNo) {
    $this->db->from('records');
    $this->db->like('player1', '{"PhoneNumber":"$userMobileNo"}');
    $query = $this->db->get();
    return $query->result();

}

Этот код не работает для меня.

...