To delete (drop) a table, select in the table list and choose Delete... from context menu of the table in the table list, or click the corresponding button above the table list. Related files (for local tables: index files etc.) are also deleted.
To delete several tables, right-click the table list and choose Multiple Selection. Then select needed tables and click Delete button.
Note
For SQL-based databases, the preferable way to delete table is using SQL query:
DROP TABLE <table_name>
or (if the table is a database view)
DROP VIEW <view_name>
See also




