| Copyright | Flipstone Technology Partners 2023 |
|---|---|
| License | MIT |
| Stability | Stable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Orville.PostgreSQL.Expr.TableReferenceList
Description
Since: 1.0.0.0
Synopsis
Documentation
data TableReferenceList Source #
Type to represent the table's references in the FROM clause of a @SELECT
statement. E.G. just the
foo
in
FROM foo
TableReferenceList provides a SqlExpression instance. See
unsafeSqlExpression for how to construct a value with your own custom
SQL.
Since: 1.0.0.0
Instances
| SqlExpression TableReferenceList Source # | |
Defined in Orville.PostgreSQL.Expr.TableReferenceList Methods toRawSql :: TableReferenceList -> RawSql Source # | |
referencesTable :: Qualified TableName -> TableReferenceList Source #
Constructs a TableReferenceList consisting of just the specified table
name.
Since: 1.0.0.0