0
myテーブル(構造体、サーフェス)には2つのインデックス行 "planet_id"と "tile_id"があります。私はそれらに参加したいが、私はSQLエラー: "列 'planet_id' where句であいまいです"を取得します。あなたは2つの表にplanet_id
を持っているので、あなたはあなたにwhere
を適用しているかを選択する必要がありますCodeigniterアクティブレコード "JOIN" 2つのインデックス
Error Number: 1052
Column 'planet_id' in where clause is ambiguous
SELECT * FROM (`structures`) JOIN `surface` ON `structures`.`planet_id`=`surface`.`planet_id` AND structures.tile_id=surface.tile_id WHERE `planet_id` = '13247'
ありがとうございました!あなたは私の日を救った:) – Sserpyc