(table: string | Expression, final = false)
| 114 | |
| 115 | // From methods |
| 116 | from(table: string | Expression, final = false): this { |
| 117 | this._from = table; |
| 118 | this._final = final; |
| 119 | return this; |
| 120 | } |
| 121 | |
| 122 | union(query: Query): this { |
| 123 | this._union = query; |
no outgoing calls