MySQL错误 - 如何解决?

File /home/a3054107/public_html/movies-tv/include/functions_common.php Line 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

Error Unknown column 'c.name' in 'field list'

Whenever I go to my website, I get this error. How do I fix it?

your movies table lacks a name column. Perhaps you mean for it to come from a different table, or you need to create that column.