全テーブルデータ削除コマンド
$ mysql -u root [db_name] -N -e 'show tables' | while read table; do mysql -u root -e "truncate table $table" [db_name]; done
Go to list of users who liked
More than 1 year has passed since last update.
全テーブルデータ削除コマンド
$ mysql -u root [db_name] -N -e 'show tables' | while read table; do mysql -u root -e "truncate table $table" [db_name]; done
Register as a new user and use Qiita more conveniently
Go to list of users who liked