DBT drop command in azure sql database

If you delete a model from your dbt project, dbt does not automatically drop the relation from your schema. This means that you can end up with extra objects in schemas that dbt creates, which can be confusing to other users.

When you remove models from your dbt project, you should manually drop the related relations from your schema.

if you want to drop table through dbt u have to create a macro to execute drop statement on warehouse

example:

{% macro drop_model(database,schema,table_name) %}

{% set query %}
    DROP TABLE IF EXISTS {{database}}.{{schema}}.{{table_name}}
{% endset %}

{{log(query, info=true)}}
{% do run_query(query) %}

{% endmacro %}

then execute dbt run-operation --args '{database: database_name, schema: schema_name, table_name: table_name}'

If you want to clean up all removed models at once from your azure db please rerfer this article

Cleaning up removed models from your production schema