我有一些表格,我試圖執行以下查詢MySQL錯誤1054在WHERE子句
select placename , staff.name , subjectname from places , staff , subject
where places_place_id = place_id and staff.staff_id = times.staff_staff_id
and subject.subject_id=times.subject_subject_id and times.time_from=8 and times.time_to=9
保持它給人的錯誤
錯誤代碼未知列:1054未知列「次.places_place_id'in'子句'
請問你認爲你的請求中有什麼「時代」(你的FROM中沒有時間)? – 2017-05-06 18:25:58
(1)'FROM'子句中沒有'times'。 (2)更重要的是。您正在使用已經過時數十年的陳舊語法。學習使用正確,明確的'JOIN'語法。 –
請不要「不格式化」這個問題 – 2017-05-06 18:27:28