Fix SQL statement to check for empty LotW dates
这个提交包含在:
父节点
dcc2bb6aee
当前提交
72869e4dca
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -58,7 +58,7 @@ class adif_data extends CI_Model {
|
|||
$this->db->where($this->config->item('table_name').'.station_id', $active_station_id);
|
||||
$this->db->where($this->config->item('table_name').'.COL_PROP_MODE', 'SAT');
|
||||
|
||||
$where = $this->config->item('table_name').".COL_LOTW_QSLRDATE != ''";
|
||||
$where = $this->config->item('table_name').".COL_LOTW_QSLRDATE IS NOT NULL";
|
||||
$this->db->where($where);
|
||||
|
||||
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
|
||||
|
|
|
|||
正在加载…
在新工单中引用