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
  1. function (table){
  2. this.table = table;
  3. }

toString Function Public


Defined sql.js

Converts the ColumnAll expression to a string

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

Documentation generated using coddoc.