我使用CodeIgniter訪問我的Mysql數據庫,並且我有兩個帶有列ID的表(新聞和事件)。我想我可以在使用'as'關鍵字之前(之後嘗試)使用select作爲NewsID返回News ID列,但它返回NewsID並且仍然覆蓋ID列。以下是一些示例代碼。CodeIgniter加入/覆蓋問題
$this->db->join('News', 'News.ID = Events.NID', 'left');
$this->db->where('Events.ID', $ID);
$this->db->get('Events');
//tried this before and after the join and added to the condition
$this->db->select('*, News.ID as NewsID');
任何信息或想法都會非常有幫助。
咦試試?你想做什麼?獲取新聞ID?你期待什麼結果? – dispake
我正在嘗試在事件和新聞之間進行連接,並且我希望ID是「事件ID」列,但「新聞ID」列是NewsID。 – ars265
啊,更清楚了。 – dispake