lt

ReQL command: lt

Command syntax

value.lt(value[, value, ...]) → bool

Description

Compare values, testing if the left-hand value is less than the right-hand.

Example: Test if a player has scored less than 10 points.

r.table("players").get(1).g("score").lt(10).run(conn);

Example: Test if variables are ordered from highest to lowest, with no values being equal to one another.

int a = 20;
int b = 10;
int c = 15;
r.lt(a, b, c).run(conn);

This is the equivalent of the following:

r.lt(a, b).and(r.lt(b, c)).run(conn);

Related commands

Get more help

Couldn't find what you were looking for?

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/lt/

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部