我從這個查詢得到以下錯誤:INNER JOIN問題
1054 - 未知列 'sheet_items.color_id' 在 '關於條款'
select sheet_items.sheet_id, sheet_items.quantity, materials.material, colors.color
from sheet_items, materials
inner join colors
on colors.color_id=sheet_items.color_id
where sheet_items.sheet_id=4 and sheet_items.material_id=materials.material_id
任何想法?提前致謝!
那麼,'sheet_items'是否有一個名爲'color_id'的列? – 2011-02-23 21:57:45
你能粘貼這些表的模式嗎?該消息非常明確,表中沒有名爲** color_id **的列** sheet_items ** – Augusto 2011-02-23 21:57:50
我確實有一個名爲color_id的列,這就是爲什麼它是一個奇怪的錯誤。 – 2011-02-23 22:00:10