Less-than <

Operator: <

circle-info

The Less Than operator < is used to compare two values and to check whether a value is less than the other. The < operator can be used to compare values of the following types:

  • text

  • number

  • duration

  • datetime

  • concept

  • reference

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

circle-check
chevron-rightvalue1 < value2 hashtag

35 < 35 => No

234 < 2345 => Yes

"text1" < "text2" => Yes

Today() < UTCNow() => Yes

'12d' < '350m' => No

'Product categories'.'Monitor' < 'Product categories'.'Phone' => Yes (in the order of concepts, Monitor comes first)

[Data.CurrentUser] < [OtherUser] => Yes (if current-user-id < other-user-id)

Last updated

Was this helpful?