I have a table and access via MySQL, I am using this command to increase the varchar
from 50 to 60:
alter table tabela alter column nome varchar(60) not null
But I only get the answer:
You have an error in your SQL syntax
Would anyone know what the syntax error was? I have tried without not null
, with single quotation marks in 60
, with and without a semicolon at the end, I'm running out of ideas.