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.
常にアクセスされているライブデータベースに列を追加しようとしています:-
ALTER TABLE `projects` ADD COLUMN `cTime` INT(30) NULL DEFAULT NULL AFTER `session`
それは常にハングします。これはMyISAMテーブルであり、テーブルをロックしようとしていると思います。IGNOREを試しましたが、これを強制する方法はありますか?
ステートメントにダブルヌルがあります
ALTER TABLE `projects` ADD COLUMN `cTime` INT(30) DEFAULT NULL AFTER `session`