Answers for "MySQL drop query is used to drop a table, view or database."

SQL
4

mysql drop

DROP TABLE table_name
Posted by: Guest on July-02-2020
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 "SQL"

Browse Popular Code Answers by Language