Documentation

SQL comparison operators

Comparison operators evaluate the relationship between the left and right operands and returns true or false.

OperatorMeaning
=Equal to
<>Not equal to
!=Not equal to
>Greater than
>=Greater than or equal to
<Less than
<=Less than or equal to
IS DISTINCT FROMIs distinct from
IS NOT DISTINCT FROMIs not distinct from
~Matches a regular expression
~*Matches a regular expression (case-insensitive)
!~Does not match a regular expression
!~*Does not match a regular expression (case-insensitive)

=

The = operator compares the left and right operands and, if equal, returns true. Otherwise returns false.

SELECT 123 = 123
  • Copy
  • Fill window
Int64(123) = Int64(123)
true

!=, <>

The != and <> operators compare the left and right operands and, if not equal, returns true. Otherwise returns false.

SELECT 123 != 456
  • Copy
  • Fill window
Int64(123) != Int64(456)
true
SELECT 123 <> 456
  • Copy
  • Fill window
Int64(123) != Int64(456)
true

>

The > operator compares the left and right operands and, if the left operand is greater than the right operand, returns true. Otherwise returns false.

SELECT 3 > 2
  • Copy
  • Fill window
Int64(3) > Int64(2)
true

>=

The >= operator compares the left and right operands and, if the left operand is greater than or equal to the right operand, returns true. Otherwise returns false.

SELECT 3 >= 2
  • Copy
  • Fill window
Int64(3) >= Int64(2)
true

<

The < operator compares the left and right operands and, if the left operand is less than the right operand, returns true. Otherwise returns false.

SELECT 1 < 2
  • Copy
  • Fill window
Int641(1) < Int64(2)
true

<=

The <= operator compares the left and right operands and, if the left operand is less than or equal to the right operand, returns true. Otherwise returns false.

SELECT 1 <= 2
  • Copy
  • Fill window
Int641(1) <= Int64(2)
true

IS DISTINCT FROM

The IS DISTINCT FROM operator is a NULL-safe operator that returns true if both operands are not equal; otherwise, it returns false. This operator guarantees the result of a comparison is true or false and not an empty set.

SELECT 0 IS DISTINCT FROM NULL
  • Copy
  • Fill window
Int64(0) IS DISTINCT FROM NULL
true

IS NOT DISTINCT FROM

The IS NOT DISTINCT FROM operator is a NULL-safe operator that returns true if both operands are equal or NULL; otherwise, it returns false. This operator negates IS DISTINCT FROM.

SELECT NULL IS NOT DISTINCT FROM NULL
  • Copy
  • Fill window
NULL IS NOT DISTINCT FROM NULL
true

~

The ~ operator compares the left string operand to the right regular expression operand and, if it matches (case-sensitive), returns true. Otherwise returns false.

SELECT 'abc' ~ 'a.*'
  • Copy
  • Fill window
Utf8(“abc”) ~ Utf8(“a.*”)
true

~*

The ~* operator compares the left string operand to the right regular expression operand and, if it matches (case-insensitive), returns true. Otherwise returns false.

SELECT 'Abc' ~* 'A.*'
  • Copy
  • Fill window
Utf8(“Abc”) ~* Utf8(“A.*”)
true

!~

The !~ operator compares the left string operand to the right regular expression operand and, if it does not match (case-sensitive), returns true. Otherwise returns false.

SELECT 'abc' !~ 'd.*'
  • Copy
  • Fill window
Utf8(“abc”) !~ Utf8(“d.*”)
true

!~*

The !~* operator compares the left string operand to the right regular expression operand and, if it does not match (case-insensitive), returns true. Otherwise returns false.

SELECT 'Abc' !~* 'a.*'
  • Copy
  • Fill window
Utf8(“Abc”) !~* Utf8(“a.*”)
false

Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more

InfluxDB 3 Core and Enterprise are now in Beta

InfluxDB 3 Core and Enterprise are now available for beta testing, available under MIT or Apache 2 license.

InfluxDB 3 Core is a high-speed, recent-data engine that collects and processes data in real-time, while persisting it to local disk or object storage. InfluxDB 3 Enterprise is a commercial product that builds on Core’s foundation, adding high availability, read replicas, enhanced security, and data compaction for faster queries. A free tier of InfluxDB 3 Enterprise will also be available for at-home, non-commercial use for hobbyists to get the full historical time series database set of capabilities.

For more information, check out: