- 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/
尝试根据多个条件和时间间隔条件加入 2 个数据帧,如下例所示: # two sample dataframes with time intervals df1 % mutate(t1 = inte
我继承了一个MySQL数据库,其中有一个表如下: mysql> describe stock_groups; +--------+--------------+------+-----+-------
我有两个格式如下的数据集: df1 #> Artist Album Year #> 1 Beatles Sgt. Pepper's 1967 #>
我有两个相等的数据框 a inner_join(df1, df2) Joining by: c("a", "b", "c") a b c 1 1 3 a 2 2 2 b 不加入 NA .但是,我
我的 ClassSelector 数据库中有两个表: 学生 学生编号 |学生姓名 |家乡 类 类(class)编号 |类名 |描述 我正在尝试编写一个程序,该程序将采用用户输入的 student_id
当我不使用标准的“col1”=“col2”连接时,我很难让 dplyr 连接正常工作。这是我所经历的两个例子。 首先: library(dplyr) tableA % select(col1, c
SELECT core_student.STUDENT_ID, core_student.FIRST_NAME, core_student.LAST_NAME FROM `core_student`
在 R 中,我如何才能 inner_join多个 tbls或 data.frame s 有效吗? 例如: devtools::install_github("rstudio/EDAWR") libra
我是一名优秀的程序员,十分优秀!