使用MySql workbench 添加字段注释的时候 ,如果换行 ,会出现下面的错误
Error parsing DDL for `por`.`info`
There was an error while parsing the DDL retrieved from the server.Do you want to view the DDL or cancel processing it?
修改方法:
alter table INFO modify column RECOMMENDED_FLAG varchar(1) comment '是否推荐(推荐=1,不推荐=0)'
把字段注释换成一行 就ok了