Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CTEBuilder

class CTEBuilder<N extends string> implements OperationNodeSource {
constructor(props: CTEBuilderProps);
materialized(): CTEBuilder<N>;
notMaterialized(): CTEBuilder<N>;
toOperationNode(): CommonTableExpressionNode;
}

§Type Parameters

§
N extends string
[src]

§Implements

§Constructors

§
new CTEBuilder(props: CTEBuilderProps)
[src]

§Methods

§
materialized(): CTEBuilder<N>
[src]

Makes the common table expression materialized.

§
notMaterialized(): CTEBuilder<N>
[src]

Makes the common table expression not materialized.