Open phiresky opened 7 years ago
a BETWEEN x AND y
a.between(x, y) is much easier to read than a.isAtLeast(x).and(t.isAtMost(y))
a.between(x, y)
a.isAtLeast(x).and(t.isAtMost(y))
https://www.postgresql.org/docs/9.1/static/functions-comparison.html
a BETWEEN x AND y
a.between(x, y)
is much easier to read thana.isAtLeast(x).and(t.isAtMost(y))
https://www.postgresql.org/docs/9.1/static/functions-comparison.html