Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
relational-schemas Database.Custom.IBMDB2 Aggregation function MAX.
-
relational-schemas Database.Custom.IBMDB2 Aggregation function MIN.
negateMaybe :: (OperatorContext c, Num a) => Record c (Maybe a) -> Record c (Maybe a)relational-schemas Database.Custom.IBMDB2 Number negate uni-operator corresponding SQL -.
-
relational-schemas Database.Custom.IBMDB2 Join sub-query. Query result is Maybe. The combinations of query and queryMaybe express inner joins, left outer joins, right outer joins, and full outer joins. Here is an example of a right outer join:
outerJoin = relation $ do e <- queryMaybe employee d <- query department on $ e ?! E.deptId' .=. just (d ! D.deptId') return $ (,) |$| e |*| d
queryMaybe' :: MonadQuery m => Relation p r -> m (PlaceHolders p, Record Flat (Maybe r))relational-schemas Database.Custom.IBMDB2 Join sub-query with place-holder parameter p. Query result is Maybe.
showNumMaybe :: (SqlContext c, Num a, IsString b) => Record c (Maybe a) -> Record c (Maybe b)relational-schemas Database.Custom.IBMDB2 Unsafely show number into string-like type in records.
-
relational-schemas Database.Custom.IBMDB2 Aggregation function SUM.
uniqueQueryMaybe' :: UniqueRelation p c r -> QueryUnique (PlaceHolders p, Record c (Maybe r))relational-schemas Database.Custom.IBMDB2 Join unique sub-query with place-holder parameter p. Query result is Maybe.
class
ProjectableFlattenMaybe a brelational-schemas Database.Custom.MySQL Interface to compose phantom Maybe nested type.
class
ProjectableMaybe (p :: Type -> Type)relational-schemas Database.Custom.MySQL Interface to control Maybe of phantom type in records.