UNPKG

alasql

Version:

AlaSQL.js - JavaScript SQL database library for relational and graph data manipulation with support of localStorage, IndexedDB, and Excel

18 lines (15 loc) 327 B
/* // // UNION for Alasql.js // Date: 03.11.2014 // (c) 2014, Andrey Gershun // */ // SELECT UNION statement yy.Union = function (params) { return yy.extend(this, params); } yy.Union.prototype.toString = function () { return K('UNION'); }; yy.Union.prototype.compile = function (tableid) { return null; };