In mysql workbench, I created a new table and added a column id, and by default its datatype is set to INT, PK and NN boxes are selected. When I tried to change the datatype of id column to VARCHAR(), it gave the following error:

enter image description here

What is wrong?

有帮助吗?

解决方案

change varchar() it to varchar(10) I believe you are missing the width of varchar

其他提示

varchar() is an empty statement, seeking the width of the "string" that you are setting. You have to input the amount of characters to accept. (Ex: varchar(10) or varchar(45)).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top