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.
スキーマに300を超えるテーブルがあり、切り捨てコマンドを実行する必要がありますか?どうすればこれが可能になりますか?すべての外部キーを知り、依存関係の順序でテーブルを並べ替える必要がありますか?
mysql -Nse 'show tables' DATABASE_NAME | while read table; do mysql -e "truncate table $table" DATABASE_NAME; done