Represents all columns in a given table, table.* in SQL

Extends Instance Properties
PropertyTypeDefault ValueDescription
table

the table this all column expression represents.

Constructor

Defined sql.js Source
function (table){
   this.table = table;
           
}
            

toString Function Public


Defined sql.js

Converts the ColumnAll expression to a string

Arguments Returns Source
function (ds){
   !Dataset && (Dataset = require("./dataset"));
   ds = ds || new Dataset();
   return ds.columnAllSql(this);
           
}
    

Documentation generated using coddoc.