(table: string | Expression, condition: string, alias?: string)
| 294 | |
| 295 | // Add join methods |
| 296 | join(table: string | Expression, condition: string, alias?: string): this { |
| 297 | return this.joinWithType('INNER', table, condition, alias); |
| 298 | } |
| 299 | |
| 300 | innerJoin( |
| 301 | table: string | Expression, |
no test coverage detected