为了账号安全,请及时绑定邮箱和手机立即绑定

请问这个是怎么回事?(问题已解决)

mysql> CREATE TABLE tdb_goods_brands(
    -> brand_id SMALLINT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
    -> brand_name VARCHAR(40) NOT NULL,
    -> )
    -> SELECT brand_name FROM tdb_goods GROUP BY brand_name;
ERROR 1064 (42000): 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 ')
SELECT brand_name FROM tdb_goods GROUP BY brand_name' at line 4

最后这句提示是什么意思?


问题解决 mysql> CREATE TABLE tdb_goods_brands
    -> (
    -> brand_id SMALLINT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
    -> brand_name VARCHAR(60) NOT NULL
    -> )
    -> SELECT brand_name FROM tdb_goods GROUP BY brand_name;
Query OK, 10 rows affected (0.44 sec)
Records: 10  Duplicates: 0  Warnings: 0

正在回答

1 回答

字符超出了

0 回复 有任何疑惑可以回复我~
#1

郑小健 提问者

非常感谢!
2016-04-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
与MySQL的零距离接触
  • 参与学习       396886    人
  • 解答问题       3353    个

本课程涵盖全部MySQL数据库的基础,学习MySQL数据库的基础知识

进入课程

请问这个是怎么回事?(问题已解决)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信