Skip to main content
Go to Latest
interface ColumnName
import { type ColumnName } from "https://deno.land/x/sqlite@v3.5.0/src/query.ts";

Name of a column in a database query.

Properties

name: string

Name of the returned column.

originName: string

Name of the database column that stores the data returned from this query.

This might be different from name if a columns was renamed using e.g. as in SELECT foo AS bar FROM table.

tableName: string

Name of the table that stores the data returned from this query.