* Returns an aliased version of the SQL expression. * * In addition to slapping `as "the_alias"` to the end of the SQL, * this method also provides strict typing: * * ```ts * import { sql } from 'kysely' * * const result = await db * .selectFrom('person') * .select(
(alias: A)
| 85 | * ``` |
| 86 | */ |
| 87 | as<A extends string>(alias: A): AliasedRawBuilder<O, A> |
| 88 | as<A extends string>(alias: Expression<any>): AliasedRawBuilder<O, A> |
| 89 | |
| 90 | /** |
no outgoing calls