Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个带有唯一索引列“名称”的索引列的表。目前,“名称”列是长度为 25 的 varchar。我想将其增加到 50。我正在尝试使用
alter table `meal_prices` modify `name` varchar(50);
去做这个。但是,这似乎不会影响该列。我觉得这不起作用,因为该列是索引列,但我不确定。有什么建议么?非常感谢。
之后运行show create table TABLENAME以验证数据类型已更改。
show create table TABLENAME