bigint
count
executeTakeFirst
executeTakeFirstOrThrow
eb.lit
To prevent SQL injections, only boolean, number and null values are accepted. If you need string or other literals, use sql.lit instead.
import { sql } from "kysely";db .insertInto("films") .values({ created_at: sql`now()`, })