Skip to main content

DROP MODEL

The DROP MODEL statement is used to delete an existing machine learning model. This statement removes the model and all associated data.

Syntax

DROP MODEL model_name;

Options

OptionDescriptionPossible ValuesMandatory
model_nameThe name of the model to be dropped.StringYes

Example

Here is an example of a DROP MODEL statement:

DROP MODEL financial_recommendation_model;

Description of Example

  • model_name: The name of the model to be dropped is financial_recommendation_model.

This example demonstrates how to use the DROP MODEL statement to delete the financial_recommendation_model. This operation will remove the model and any data associated with it from the system.