The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

SQL::QueryBuilder::WebApi::Object::Condition

Defines a constraint for original query resultset values.

Load the model package

use SQL::QueryBuilder::WebApi::Object::Condition;

Properties

Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- field | string | Column of original query to which a constraint will applied. | [optional] condition_operator | string | Condition operator. | [optional] values | ARRAY[string] | List of values for a constraint. 'IsNull', 'IsNotNull' need no values; 'Between', 'NotBetween' require 2 values; 'In' accepts one or more values; other conditions accept single value only. | [optional]

[Back to Model list] [Back to API list] [Back to README]