作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SELECT core_student.STUDENT_ID, core_student.FIRST_NAME, core_student.LAST_NAME
FROM `core_student`
INNER_JOIN `ssp_student`
WHERE ssp_student.STUDENT_ID = core_student.STUDENT_ID;
在 WHERE
子句上抛出错误:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解“ssp_student”附近用户的正确语法,其中 ssp_student.STUDENT_ID = core_student.STUDENT_ID
我只想选择 SELECT
中列出的字段,然后连接 ssp_student
中的所有列,其中 ssp_student.STUDENT_ID
字段是与 core_student.STUDENT_ID
字段相同。
最佳答案
正确的方法是
SELECT core_student.STUDENT_ID, core_student.FIRST_NAME, core_student.LAST_NAME
FROM `core_student`
INNER JOIN `ssp_student`
on ssp_student.STUDENT_ID = core_student.STUDENT_ID;
关于mysql - 这个 MySQL 查询有什么问题? INNER_JOIN WHERE 子句的语法正确吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23065360/
我是一名优秀的程序员,十分优秀!