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.
我有一个SET字段达到了 64 的限制(几年前我在设计数据库时是个新手)。现在我无法向我的字段添加更多SET值。department我正在考虑将其更改为ENUM类型。我能做些什么?
SET
department
ENUM
MySQL 5.0.95
alter table `table_name` change column_name new_column_name enum('a','b','c','d');
新列名可以与旧列名相同。值可能应该是相同的,或者至少应该有来自 set 类型的每个旧值和一些您想要添加的新值。