Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.WheneableMergeQueryBuilder#whenMatchedAndRef

Kysely dialect for PostgreSQL using the Postgres.js client.
Latest
method kysely.WheneableMergeQueryBuilder.prototype.whenMatchedAndRef
import { kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/deps.ts";
const { WheneableMergeQueryBuilder } = kysely;

Adds the when matched clause to the query with an and condition. But unlike whenMatchedAnd, this method accepts a column reference as the 3rd argument.

This method is similar to SelectQueryBuilder.whereRef, so see the documentation for that method for more examples.

Type Parameters

LRE extends ReferenceExpression<DB, TT | ST>
RRE extends ReferenceExpression<DB, TT | ST>