我有一个表名用户,我想通过查询下载到csv文件, 但我不想在表用户中选择密码列。
我是sql的新手,为了更新鲜,请任何人帮助我。以下是我的查询
function get_all_partnerships_to_download() {
$this->db->select('*');
$this->db->from("$this->_users_table");
$this->db->join("$this->_user_profile_table", "$this->_user_profile_table.user_id = $this->_users_table.id");
$this->db->where("$this->_user_profile_table.participate_as_id", 3);
$this->db->group_by("$this->_users_table.id");
$this->db->distinct();
return $this->db->get($this->_table);
}