由於某種原因,我的INNER JOIN存在問題,但它不起作用。INNER JOIN錯誤
這裏是我的代碼
SELECT
`hold`.`id` AS `id`,
`hold`.`name` AS `name`
INNER JOIN `instruktorer`
ON `hold`.`ins` = `instruktorer`.`id`
FROM `hold`
我得到的錯誤是:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNER JOIN `instruktorer` ON `hold`.`ins` = `instruktorer`.`id` FROM `hold`' at line 4
我做一個INNER幾乎每天加入,但現在我只是不能得到它的工作。
希望有人能幫助我
你忘了在INNER JOIN之前添加表名.. –
你的從句子不合適 –
或者說你放錯了你的位置..在INNER JOIN之前放置它.. –