Hoogle Search

Within LTS Haskell 24.2 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. in_ :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (ValueList typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto

    IN operator. For example if you want to select all Persons by a list of IDs:

    SELECT *
    FROM Person
    WHERE Person.id IN (?)
    
    In esqueleto, we may write the same query above as:
    select $
    from $ \person -> do
    where_ $ person ^. PersonId `in_` valList personIds
    return person
    
    Where personIds is of type [Key Person].

  2. in_ :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (ValueList typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto.Experimental

    IN operator. For example if you want to select all Persons by a list of IDs:

    SELECT *
    FROM Person
    WHERE Person.id IN (?)
    
    In esqueleto, we may write the same query above as:
    select $
    from $ \person -> do
    where_ $ person ^. PersonId `in_` valList personIds
    return person
    
    Where personIds is of type [Key Person].

  3. in_ :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (ValueList typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto.Internal.Internal

    IN operator. For example if you want to select all Persons by a list of IDs:

    SELECT *
    FROM Person
    WHERE Person.id IN (?)
    
    In esqueleto, we may write the same query above as:
    select $
    from $ \person -> do
    where_ $ person ^. PersonId `in_` valList personIds
    return person
    
    Where personIds is of type [Key Person].

  4. in_ :: PersistField typ => SqlExpr (Value typ) -> SqlExpr (ValueList typ) -> SqlExpr (Value Bool)

    esqueleto Database.Esqueleto.Legacy

    IN operator. For example if you want to select all Persons by a list of IDs:

    SELECT *
    FROM Person
    WHERE Person.id IN (?)
    
    In esqueleto, we may write the same query above as:
    select $
    from $ \person -> do
    where_ $ person ^. PersonId `in_` valList personIds
    return person
    
    Where personIds is of type [Key Person].

  5. min_ :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value (Maybe (Nullable a)))

    esqueleto Database.Esqueleto

    No documentation available.

  6. min_ :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value (Maybe (Nullable a)))

    esqueleto Database.Esqueleto.Experimental

    No documentation available.

  7. min_ :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value (Maybe (Nullable a)))

    esqueleto Database.Esqueleto.Internal.Internal

    No documentation available.

  8. min_ :: PersistField a => SqlExpr (Value a) -> SqlExpr (Value (Maybe (Nullable a)))

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

Page 1 of 1