現在、mysqlでカラム名を変更したいと考えているのですが、エラーになってしまいます。
ERROR 1064 (42000): 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 'limit date not null' at line 1
ALTER TABLE todoitems CHANGE COLUMN day limit date not null;
このコマンドを入力しました。
dayというカラム名をlimitに変更したいのですがどのようにするべきでしょうか?
バージョン 8.0.17
試したこと
- 大文字小文字の変換
- alter table todoitems rename day to limit not null;
- ALTER TABLE todoitems CHANGE day limit date not null;
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。