| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Rel8.Internal.Expr.Ord
Synopsis
- (<.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool
- (<=.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool
- (>.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool
- (>=.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool
- (<?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- (<=?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- (>?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- (>=?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- leastExpr :: Sql DBOrd a => Expr a -> Expr a -> Expr a
- greatestExpr :: Sql DBOrd a => Expr a -> Expr a -> Expr a
Documentation
(<.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool infix 4 Source #
Corresponds to the SQL < operator. Note that this differs from SQL <
as null will sort below any other value. For a version of < that exactly
matches SQL, see (<?).
(<=.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool infix 4 Source #
Corresponds to the SQL <= operator. Note that this differs from SQL <=
as null will sort below any other value. For a version of <= that exactly
matches SQL, see (<=?).
(>.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool infix 4 Source #
Corresponds to the SQL > operator. Note that this differs from SQL >
as null will sort below any other value. For a version of > that exactly
matches SQL, see (>?).
(>=.) :: Sql DBOrd a => Expr a -> Expr a -> Expr Bool infix 4 Source #
Corresponds to the SQL >= operator. Note that this differs from SQL >
as null will sort below any other value. For a version of >= that
exactly matches SQL, see (>=?).
(<?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool infix 4 Source #
Corresponds to the SQL < operator. Returns null if either arguments
are null.
(<=?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool infix 4 Source #
Corresponds to the SQL <= operator. Returns null if either arguments
are null.
(>?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool infix 4 Source #
Corresponds to the SQL > operator. Returns null if either arguments
are null.
(>=?) :: DBOrd a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool infix 4 Source #
Corresponds to the SQL >= operator. Returns null if either arguments
are null.