有人可以告訴我這段代碼有什麼問題,導致它吐出一個錯誤?#1064 - 創建視圖時,您的SQL語法有錯誤
我的代碼如下:
CREATE OR REPLACE VIEW vw_training AS
SELECT training.train_attended, clients.client_firstname, clients.client_lastname, clients.client_swn, clients.client_id, locations.loc_id, locations.loc_title, locationsp.loc_id, locationsp.loc_title,
FROM training
JOIN clients ON clients.client_id = training.train_clientid
JOIN locations AS locationsp ON locations.loc_id = training.train_pickup
LEFT JOIN locations ON locations.loc_id = clients.client_winz
這是我找回了錯誤:
#1064
- 您的SQL語法錯誤;檢查 對應於你的MySQL服務器版本正確的語法使用 附近「FROM培訓JOIN客戶ON clients.client_id = training.train_clientid JOIN」在行3
我跑的phpmyadmin版本的手冊信息:3.5.2.2
我用這個腳本使用不同的值前沒有問題
在選擇列表的末尾有一個額外的逗號 – Taryn 2013-04-23 01:56:41
爲什麼選擇downvoted?合法的問題。每個人都會犯錯誤。 Upvoted。 – user2757572 2017-11-05 10:46:59