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.
mysql から db をダンプするとき、行を削除できる方法はありますかENGINE=MyISAM AUTO_INCREMENT=528 ...,LOCK TABLES "controller_actions" WRITE;とUNLOCK TABLES;. データベースが非常に巨大であるため、db ファイルを開いてこれらの行を削除するのは非常に面倒です。
ENGINE=MyISAM AUTO_INCREMENT=528 ...
LOCK TABLES "controller_actions" WRITE;
UNLOCK TABLES;
どんな助けでも大歓迎です
ENGINEオプションとAUTO_INCREMENTオプションを削除する理由がわかりません。私が知る限り、これらのオプションだけを削除する方法はありません。CREATE TABLEステートメント全体を削除する場合は、--no-create-infoオプションを使用します。LOCK TABLEおよびUNLOCK TABLEコマンドを使用しないようにするには、 を使用します--skip-add-locks。
ENGINE
AUTO_INCREMENT
CREATE TABLE
--no-create-info
LOCK TABLE
UNLOCK TABLE
--skip-add-locks