Answers for "mysql to drop table"

SQL
4

mysql drop

DROP TABLE table_name
Posted by: Guest on July-02-2020
2

how to DROP a table in mysql

-- 'DROP TABLE' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;
Posted by: Guest on February-18-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language