문제

When using the MySQL command line interface, I enter the following command:

UPDATE movies SET Title=Full WHERE ID=6;

I get the following error:

ERROR 1054 (42S22): Unknown column 'Full' in 'field list'

I have verified that I am using the table 'movies' and the column 'Title' exist. Also, there does indeed exist an entry with an ID=6.

What am I doing wrong?

도움이 되었습니까?

해결책

UPDATE movies SET Title="Full" WHERE ID=6; ???

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top