欢迎投稿

今日深度:

错误代码: 1054 Unknown column 'course' in &

错误代码: 1054 Unknown column 'course' in 'field list',1054column


1、错误描述

1 queries executed, 0 success, 1 errors, 0 warnings

查询:SELECT stu_name, course, score FROM t_student_info s LIMIT 0, 1000

错误代码: 1054
Unknown column 'course' in 'field list'

执行耗时   : 0 sec
传送时间   : 0 sec
总耗时      : 0 sec

2、错误原因

SELECT 
  stu_name,
  course,
  score 
FROM
  t_student_info s 
  AND t_score_info sc 
WHERE s.stu_id = sc.stu_id 
GROUP BY stu_id 

3、解决办法

www.htsjk.Com true http://www.htsjk.com/shujukunews/8021.html NewsArticle 错误代码: 1054 Unknown column course in field list,1054column 1、错误描述 1 queries executed, 0 success, 1 errors, 0 warnings查询:SELECT stu_name, course, score FROM t_student_info s LIMIT 0, 1000错误代码: 1054Unknown...
评论暂时关闭