* Joins another table to the query using an `inner join`. * * ### Examples * * <!-- siteExample("join", "Simple inner join", 10) --> * * Simple `inner join`s can be done by providing a table name and two columns to join: * * ```ts * const result = await db * .selectFr
(
table: TE,
k1: K1,
k2: K2,
)
| 709 | * ``` |
| 710 | */ |
| 711 | innerJoin< |
| 712 | TE extends TableExpression<DB, TB>, |
| 713 | K1 extends JoinReferenceExpression<DB, TB, TE>, |
| 714 | K2 extends JoinReferenceExpression<DB, TB, TE>, |
no outgoing calls