I'm starting to study MySQL and I found in one of my resources the use of the command:
Alter table tableName modify(....)
Instead of using 'modify column' It it valid to use it and if it's I want some.
I tried to search about it but I found nothing. The only information is that could be an older version
If you look at the
alter tabledocumentation, you'll see that when using themodifydirective, thecolumnkeyword is optional:In layman's terms - you can either use it or not, it makes no difference.