MySQL错误 - 如何解决?

时间:2015-09-05 12:36:07

标签: php mysql

文件/home/a3054107/public_html/movies-tv/include/functions_common.php 第612行 Sql

select a.*,b.user_name,c.name,c.slug,c.startwith 
from comments a 
inner join users b 
on a.uid=b.id 
inner join movies c 
on c.id=a.mid 
where a.status=1 
order by a.id desc limit 10
  

错误'字段列表'中的未知列'c.name'

每当我访问我的网站时,都会收到此错误消息。 我该如何解决?

1 个答案:

答案 0 :(得分:1)

您的电影表缺少name列。也许你的意思是来自不同的表,或者你需要创建该列。