Мой запрос выглядит следующим образом:
Код: Выделить всё
$query = $this->db
->select('*')
->from('appointments')
->where('id', 5) // 'id of record to select
->where('start_datetime' ) // 'here's indecision
->get()
->result_array();
Подробнее здесь: https://stackoverflow.com/questions/349 ... ry-builder