-4
SELECT student.studnt_id,student_onfo.student_name,subject,marks  
FROM `student` 
INNER JOIN 'student_info' ON student.studnt_id=student_info.studnt_id 
ORDER BY student.studnt_id

このクエリを起動すると、このエラーが表示されます

4

2 に答える 2

3
SELECT student.studnt_id,student_info.student_name,subject,marks  
FROM `student` 
INNER JOIN `student_info` ON student.studnt_id=student_info.studnt_id 
ORDER BY student.studnt_id

このクエリを試してみてください。

ここにスペルミスがあります:-

student_onfo.student_name->student_info.student_name

'学生情報' ->student_info

于 2013-06-10T07:32:41.043 に答える
1

これを試してみてください -

SELECT 
      s.studnt_id
    , si.student_name
    , subject
    , marks  
FROM student AS s
JOIN student_info AS si ON s.studnt_id = si.studnt_id 
ORDER BY s.studnt_id
于 2013-06-10T07:33:04.017 に答える