Do you know how to delete a table in MariaDB's database?

Submitted by: Muhammad
DROP TABLE command is used to delete a table from a database in MariaDB. It deletes the table permanently and cannot be recovered.

Syntax:
DROP TABLE table_name ;
Submitted by: Muhammad

Read Online MariaDB Job Interview Questions And Answers