我正试图从一张桌子获取数据记录并更新到表格2但我认为,我错过了一些东西,你的帮助和时间对我有帮助。
$this->db->set('employees.country','countries.countryName');
$this->db->join('countries', 'employees.country_code2 = countries.country_code2','inner');
$query = $this->db->update('countries');
我需要从Countries Table获取countryName,然后根据匹配的国家/地区代码更新Employees Table中的Country Name。