Represents an SQL JOIN clause with USING conditions. Created by patio.Dataset join methods. See patio.sql.JoinClause for other argument parameters.

Extends Instance Properties
PropertyTypeDefault ValueDescription
using

READ ONLY the column/s to use when joining.

Constructor

Defined sql.js Source
function (using,joinType,table,tableAlias){
   this.__using = using.map(function (u) {
       return isString(u) ? new Identifier(u) : u;
   });
   this._super(arguments, [joinType, table, tableAlias]);
           
}
            

toString Function Public


Defined sql.js

Converts the patio.sql.JoinUsingClause to a string.

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

Documentation generated using coddoc.