orville-postgresql-1.0.0.0: A Haskell library for PostgreSQL
CopyrightFlipstone Technology Partners 2023
LicenseMIT
StabilityStable
Safe HaskellSafe-Inferred
LanguageHaskell2010

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

referencesTable :: Qualified TableName -> TableReferenceList Source #

Constructs a TableReferenceList consisting of just the specified table name.

Since: 1.0.0.0