gpt4 book ai didi

php - 内部连接错误

转载 作者:行者123 更新时间:2023-12-01 00:52:28 24 4
gpt4 key购买 nike

出于某种原因,我的 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 JOIN,但现在我无法让它工作。

希望有人能帮助我

最佳答案

试试这个:

SELECT
`hold`.`id` AS `id`,
`hold`.`name` AS `name`
FROM `hold`
INNER JOIN `instruktorer`
ON `hold`.`ins` = `instruktorer`.`id`

关于php - 内部连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14276454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com