Вопрос

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