Return `self NOT BETWEEN low AND high`
(self, low: Expr, high: Expr)
| 1994 | |
| 1995 | /// Return `self NOT BETWEEN low AND high` |
| 1996 | pub fn not_between(self, low: Expr, high: Expr) -> Expr { |
| 1997 | Expr::Between(Between::new( |
| 1998 | Box::new(self), |
| 1999 | true, |
| 2000 | Box::new(low), |
| 2001 | Box::new(high), |
| 2002 | )) |
| 2003 | } |
| 2004 | /// Return a reference to the inner `Column` if any |
| 2005 | /// |
| 2006 | /// returns `None` if the expression is not a `Column` |