MySQL Query Browser and MySQL Error Nr. 1064
本文共 550 字,大约阅读时间需要 1 分钟。
This error was bugging me for ages when trying to create a table using MySQL Query Browser . The problem lies in the fact that you are using a VARCHAR for one of the columns data types. MySQL query browser adds this datatype to your query and the query will then fail with this error message. MySQL Error Nr. 1064 This is quite a cryptic error message but the solution is simple. Valid SQL requires a value for VARCHAR so you just add a value in brackets after VARCHAR. VARCHAR(32) This should fix it. 转载于:https://my.oschina.net/liuhui1990/blog/50466