Answers for "mysql drop table command line"

SQL
0

mysql drop tables

mysql --silent --skip-column-names -e "SHOW TABLES" DB_NAME | xargs -L1 -I% echo 'DROP TABLE `%`;' | mysql -v DB_NAME
Posted by: Guest on April-23-2021

Code answers related to "mysql drop table command line"

Code answers related to "SQL"

Browse Popular Code Answers by Language