* Join specifies a JOIN clause. * The "typ" parameter specifies the JOIN type (e.g. "INNER JOIN", "LEFT JOIN").
(typ: string, table: string, on: Expression)
| 5159 | * The "typ" parameter specifies the JOIN type (e.g. "INNER JOIN", "LEFT JOIN"). |
| 5160 | */ |
| 5161 | join(typ: string, table: string, on: Expression): (SelectQuery) |
| 5162 | } |
| 5163 | interface SelectQuery { |
| 5164 | /** |