Answers for "command to delete a table in mysql"

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 "command to delete a table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language