Skip to content

DB Explorer

Drop Table

This guide shows how to drop a table from the DBCode Explorer without writing a SQL command.

  • In the DBCode Explorer, connect to the database containing the table you want to drop.
  • Expand the connection and database that contain the table.
  • Browse the table list and find the table you want to drop.
  • Right-click the table name and select Drop from the context menu.

Drop table option

  • Hold Ctrl (Windows/Linux) or Cmd (macOS) and click additional tables to select more than one.
  • Right-click any of the selected tables and choose Drop to drop them all in a single operation.
  • On databases that support it, DBCode asks whether to Drop or Drop Cascade before showing the confirmation step.
  • Cascade also removes dependent objects, such as views and foreign key references, so review what will be affected before confirming.
  • If DBCode asks for confirmation, review the table name carefully before confirming.
  • To stop the operation, cancel the confirmation prompt.
  • After DBCode completes the operation, the DBCode Explorer refreshes to reflect the removed table.