Allow qualified names ('schema.table') in from clauses
This commit is contained in:
parent
fd42a3cd73
commit
2e91fb9e81
4 changed files with 7 additions and 0 deletions
Language/SQL/SimpleSQL
|
@ -282,6 +282,8 @@ I'm not sure if this is valid syntax or not.
|
|||
> -- | Represents a entry in the csv of tables in the from clause.
|
||||
> data TableRef = -- | from t
|
||||
> TRSimple Name
|
||||
> -- | from s.t
|
||||
> | TRQualified Name Name
|
||||
> -- | from a join b
|
||||
> | TRJoin TableRef JoinType TableRef (Maybe JoinCondition)
|
||||
> -- | from (a)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue