Skip to main content

Filter

SQL

Filters models based on the provided filter condition.

Parameters

ParameterDescriptionRequired
ModelInput Source on which the filter condition will be applied.True
Filter ConditionBooleanType column or boolean expression.True

Example

Assume you have the following weather prediction table.

DatePredictionTemperatureCelsiusHumidityPercentWindSpeedCondition
2025-03-01156510Sunny
2025-03-02177012Cloudy
2025-03-03166811Rainy
2025-03-0414729Sunny

Result

The follow table results when you use the following filter condition: DatePrediction > '2025-03-02'

DatePredictionTemperatureCelsiusHumidityPercentWindSpeedCondition
2025-03-03166811Rainy
2025-03-0414729Sunny