Documentation

EqualityOperators

Trait to represent equality operators.

Table of Contents

Methods

eq()  : PostgrestRequestBuilder
Equals operator.
in()  : PostgrestRequestBuilder
In operator.
is()  : PostgrestRequestBuilder
Is operator.
isdistinct()  : PostgrestRequestBuilder
Is distinct from operator.
neq()  : PostgrestRequestBuilder
Not equal operator.

Methods

eq()

Equals operator.

public eq(string $columnName, string|int|float ...$value) : PostgrestRequestBuilder
Parameters
$columnName : string

The name of the column.

$value : string|int|float

The value(s) to use.

Tags
throws
FilterLogicException

If multiple values are passed without modifier like all() or any().

throws
NotUnifiedValuesException

If the value types are not unified.

link
https://postgrest.org/en/stable/references/api/tables_views.html#operators
Return values
PostgrestRequestBuilder

The PostgrestRequestBuilder instance.


        
On this page

Search results