查询” ALTER TABLE test_posts ADD Sticky boolean NOT NULL default = false” = 错误
我的查询有什么问题吗?
ALTER TABLE test_posts ADD sticky boolean NOT NULL default = false
#1064 - 你的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 2 行“=false”附近使用的正确语法
Whats wrong with my query?
ALTER TABLE test_posts ADD sticky boolean NOT NULL default = false
#1064 - 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 '=false' at line 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要删除
=
:You need to remove the
=
:这个 SQL 命令应该可以工作:
This SQL command should work: