SQL语句运行,报这样的错误,求大神指出哪儿错了

DROP TABLE IF EXISTS brand;
这是922行 create table brand(
id bigint not null auto_increment comment '品牌ID',
brand_name varchar(32) not null comment '品牌名称',
is_free_shipping tinyint not null default 0 comment '是否免运费 0:是,1:否',
describe varchar(64) comment '信息描述',
primary key(id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT '服装品牌表';

ERROR 1064 (42000) at line 922: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'describe varchar(64) comment '淇℃伅鎻忚堪',
primary key(id)
)ENGINE=InnoDB D' at line 5

上面是我的建表语句, 请大神解答怎么错误了,看了好几遍,没找出来错误啊

说的是你用的语法和Mysql 的版本 。不兼容?

describe 是关键字 你换个字段名称就可以了

describe varchar(64) comment '信息描述',

describe 是关键字,无法区别,换成其他名字就可以了。

msyql学习教程 http://www.data.5helpyou.com

describe varchar(64) comment '信息描述', 这里报错了。
describe 是数据库关键字,不能用,换个名称字段。eg:describle

describe 是数据库的关键字 换个字段名称就OK了

describe这个写成describle,这样就对了。