由於一切正確,我無法理解錯誤。 OCN是數據庫的名稱。我在MySQL控制檯上檢查了這個查詢,它在那裏運行得很好。但是在函數代碼中它給出了錯誤。任何人都可以幫我解決這個錯誤嗎?提前致謝。這個sql查詢有什麼問題?
這是我的SQL查詢:
DELETE
OCN.practice_sheet_set,
OCN.practice_sheet_questions
FROM
OCN.practice_sheet_set AS practice_sheet_set,
OCN.practice_sheet_questions AS practice_sheet_questions
WHERE
practice_sheet_set.practice_sheet_set_id = practice_sheet_questions.practice_sheet_set_id
AND practice_sheet_set.practice_sheet_id=2
MySQL的錯誤:
1109(多未知表 'practice_sheet_set' DELETE)
嘗試'刪除OCN.practice_sheet_set。*,OCN.practice_sheet_questions。*'。 – Knelis 2013-03-26 11:02:48
@Pranay Rana,CornéM:你在哪裏看到這樣的語法:http://dev.mysql.com/doc/refman/5.5/en/delete.html ?? – zerkms 2013-03-26 11:07:13
您可以試試 – Amit 2013-03-26 11:12:58