import { type ColumnName } from "https://deno.land/x/sqlite@v3.9.1/src/query.ts";
Name of a column returned from a database query.
Properties
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
.
Corresponds to the sqlite3_column_origin_name
function.