문제

Really simple question from a newbie (who has done a lot of googling to try to work it out!)

The below MySQL code is giving a Syntax error saying "check" is UNEXPECTED_SYM

ALTER TABLE check change AccountRef_ListID AccountListID VARCHAR(50)

Why?

도움이 되었습니까?

해결책

You can not use the word check in MySQL as it is reserved words. Change your table name to new proper one. Look into reserved words here, but it is just for MySQL 5.5.

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