varchar/char を列挙型に変換する簡単な方法はありますか? 私はこれをやろうとしましたが、うまくいきません
alter table zipcodes add column state_short_enum enum(
(select state_short from zipcodes group by state_short)
)
次のエラーが表示されます。
#1064 - You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near
'(select state_short from zipcodes group by state_short))' at line 1