Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Interface TableSchema

    Table definition in the schema.

    interface TableSchema {
        aliases?: string[];
        columns: ColumnSchema[];
        name: string;
        schema?: string;
    }
    Index

    Properties

    aliases?: string[]

    Aliases that can refer to this table

    columns: ColumnSchema[]

    Column definitions

    name: string

    Table name

    schema?: string

    Schema/namespace name (e.g., "public", "dbo")